Various 'contexts' within ApplicationContext #3424
-
I have been asked to keep track of User's office location for audit purposes. Kind Regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Given that this data element is per-user, I'd strongly consider putting it as a claim in the ClaimsIdentity for the user. If you don't want to do that, then probably putting it in There is no |
Beta Was this translation helpful? Give feedback.
Given that this data element is per-user, I'd strongly consider putting it as a claim in the ClaimsIdentity for the user.
If you don't want to do that, then probably putting it in
ClientContext
makes the most sense, so it flows with data portal calls.There is no
GlobalContext
anymore - that has been removed.