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
Hi, I finally understood your groups, took me a couple of times peeking at code and reading your website docs.
But its not clear on how to implement the groups authorization in conjunction with roles on a controller
For e.g. if we had 2 groups that need to only return and authorize their managers, how would this be modeled exactly ?
Group one, to only find and authorize Homedepots managers
Group = HomeDepot
Role = Manager
Users = Hank, Harry etc.
Group two,
to only find and authorize Walmarts managers and walmarts employees/users
Group = Walmart
Role = Manager
Users = John, Jake etc.
I need to implement the company at a group level, and then these tasks. Can you help me with them..
What would (a sample) my group declaration be?
What would my controller authorize attribute be, would it simply be roles? I ask because I want to check against Group [HomeDepot+MgrRole] and not just Manager role... which defeats the purpose of groups
How can I get only managers inside Walmart, and users/employees inside walmart?
How can I find which all groups a user and a role belong to?
How can I get all the roles for a user, his list of access to 1) directly as part of a role 2) indirectly via groups
The text was updated successfully, but these errors were encountered:
Hi, I finally understood your groups, took me a couple of times peeking at code and reading your website docs.
But its not clear on how to implement the
groups
authorization in conjunction with roles on acontroller
For e.g. if we had 2 groups that need to only return and authorize their managers, how would this be modeled exactly ?
Homedepot
s managersGroup = HomeDepot
Role = Manager
Users = Hank, Harry etc.
to only find and authorize
Walmart
s managers and walmarts employees/usersGroup = Walmart
Role = Manager
Users = John, Jake etc.
I need to implement the company at a group level, and then these tasks. Can you help me with them..
The text was updated successfully, but these errors were encountered: