I’m currently migrating to the new beta versions of ionic user and ionic push.
In the old version I could set the user id with user.id = 34234234
Now, I need to authenticate and create a user:
var details = {
'email': email,
'id': 12345,
'password': 'goodpassword'
};
Ionic.Auth.signup(details).then(signupSuccess, signupFailure);
But when I login to ionic.io and look at the newly created user the ID is still some generated string.
How can I set the Ionic user ID?