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..
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
groupsauthorization in conjunction with roles on acontrollerFor e.g. if we had 2 groups that need to only return and authorize their managers, how would this be modeled exactly ?
Homedepots managersGroup = HomeDepot
Role = Manager
Users = Hank, Harry etc.
to only find and authorize
Walmarts 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..