-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store user data on account so it's available across different browsers #1744
Comments
Thanks for suggesting. Storing user-specific settings in Parse Server seems like a useful feature. Do you want to explore how this could be done conceptually? Alternatively, it is already possible to pre-set some settings in the Parse Dashboard config file. |
I think database seems to be the best place to store this data. Could the mechanism for storing and reading schemas be used?
At this stage I have following concerns:
|
ad 1) ad 2) ad 3) |
An easy way to import and export const export = JSON.stringify(localStorage); To import: Object.assign(localStorage,JSON.parse(import)); I found that here. |
We are gathering the pieces! What could a most basic version of this look like, so we get a first version implemented? Maybe we could focus on a single setting to store in the DB, future PRs can then build on top of that. For example, we could store only the column preferences (visibility and order). The tasks would probably be:
|
Currently user preferences like columns order, visibility, height are stored in Local Storage.
When accessing dashboard from other machine all those changes are not preserved.
It would be nice to have all those customizations available across different browsers/devices.
The text was updated successfully, but these errors were encountered: