I'm implementing the ACL component with my CakePHP app. I have everything set up correctly regarding users and groups, however the app will have multiple access areas where permissions are set based not only for users but for other AROs as well. For instance, a ticket (ARO) wants access to a support team (ACO) based on which ticket group it belongs to.
I'd like to have two separate user/group models acting as ACL requesters that are binded to each other e.x
- Users
- User
- Group
- Tickets
- Ticket
- Ticketgroup
What I am unsure of is if it's possible to use the ACL component on this scale, having two separate user/group models binded to one another in the same ACL?