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});
Is this normal behavior?
The text was updated successfully, but these errors were encountered:
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.
Is this normal behavior?
The text was updated successfully, but these errors were encountered: