I have an application in which a user logs in and uses several functions. In the meantime, he can configure some settings on the corresponding screen (receive push notifications, messages on facebook, message on twitter).
I am wondering where to save these settings in order to stick with a registered user, so that when another user logs in, he can configure his own settings. Etc.
If I store these values in localStorage, they will always be associated with the LAST registered by the user, which is not a convenient way.
So, should I store such data in my backend tables? (I use parse BTW) and retrieve them every time a user logs in? Or is there another way to do this?
thank
source
share