You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm changing the username and password for internal purposes and then returning the data to the client. I also noticed that there is also no new session returned.
var user = new Parse.User();
user.id = userId;
user.set("username", username);
user.set("password", password);
return user.save(null, {useMasterKey: true});