Best way of saving current user data in CloudBoost

170 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 best solutions below

1
On BEST ANSWER

After you modified the current user.

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

Let me know if this help.