You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functionality to have a token act in another user's name:
Add a read-only nullable attribute to tokens called user_override or something (default: None)
Rename the user attribute to owner
Add generated column user which is computed as COALESCE(user_override, owner)
... and adjust FKs and token management code appropriately.
The attribute can only be set with the token owner's consent and when manage_tokens == False. Allow users to see who holds an override token for their account.
The text was updated successfully, but these errors were encountered:
Functionality to have a token act in another user's name:
user_override
or something (default:None
)user
attribute toowner
user
which is computed asCOALESCE(user_override, owner)
... and adjust FKs and token management code appropriately.
The attribute can only be set with the token owner's consent and when
manage_tokens == False
. Allow users to see who holds an override token for their account.The text was updated successfully, but these errors were encountered: