possible to store client args with auth user? #924
Answered
by
lo5
Alex-Wenner-FHR
asked this question in
Q&A
-
Is it possible for client args to be stored with an auth user? For example, a user can customize a table, select/deselect columns. this data is stored in something like q.client.table. Is it possible to provide this data each time the associated q.auth.subject logs onto the app? |
Beta Was this translation helpful? Give feedback.
Answered by
lo5
Jul 20, 2021
Replies: 1 comment 1 reply
-
User info is best stored in If you store info in |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Alex-Wenner-FHR
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
User info is best stored in
q.user
, notq.client
.q.user
is tied to a user, whereasq.client
is tied to a browser tab.If you store info in
q.user
, you can use checkpointing to restore that info between app restarts.