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
get_masked_permissions is called in format_user_reply as well as in helpers/acl
(any time permissions need to be calculated)
this is expensive and unnecessary if we consolidate by storing the calculated value on the user model itself in the database
this will lower the time complexity to read and remove any duplicate calls
create: store on model in db
update: when user/role is updated
The text was updated successfully, but these errors were encountered:
get_masked_permissions is called in format_user_reply as well as in helpers/acl
(any time permissions need to be calculated)
this is expensive and unnecessary if we consolidate by storing the calculated value on the user model itself in the database
this will lower the time complexity to read and remove any duplicate calls
create: store on model in db
update: when user/role is updated
The text was updated successfully, but these errors were encountered: