0
I have the following domain classes:
User hasOne Rolegroup hasMany Roll
- Examples:
Rolegroup: Admin, Professional, Client, ...
Roll: ROLE_ACTION_1, ROLE_ACTION_2, ...
How do I check if the User belongs to a specific Rolegroup?
On @Secured I can only insert "ROLE"... Do I need to include all the roles of the group whenever I want to grant access to a specific group? There’s a viable way to do this?