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 need enable user profile editing, but in phone_server.js row number 630, there is a function that disable user profile editing:
/** Disable user profile editing **/
Meteor.users.deny({
update: function () {
return true;
}
});
Any Idea?
The text was updated successfully, but these errors were encountered:
@ofermalbin You can change it by calling Meteor method instead of doing client side operation for example - Meteor.call('updateUser, userId, ... ) I think it is a better approach for sensitive staff like user profile you can read about it here
@okland I think you have a good point here. However, as this package is supposed to deal with login only, this can cause unexpected rsults for many developers.
I need enable user profile editing, but in phone_server.js row number 630, there is a function that disable user profile editing:
/** Disable user profile editing **/
Meteor.users.deny({
update: function () {
return true;
}
});
Any Idea?
The text was updated successfully, but these errors were encountered: