Best way of saving current user data in CloudBoost

129 views Asked by At

To retrieve the current logged user is as easy as call CB.CloudUser.current but, if I change some data of this user, which is the best way of saving it back to DataBase?

1

There are 1 answers

1
Nawaz Dhandala On BEST ANSWER

After you modified the current user.

CB.CloudUser.current.save({
//callback functions here..
});

Let me know if this help.