Role groups

The Role Groups section is where you can create groups and assign roles to them. Adding users to these groups provides a more efficient way to manage roles for multiple users.

How to use

In order to create (or edit) Role Groups, in the System app, click on main menu and select Role Groups. In the page that opens click the Add button or select and existing one and click the Edit button.

Designer

  1. Group name - The name of the group.
erDiagram
    user_group {
        string name
    }
    user_group_item{
        integer id_user_item FK
        datetime last_check
        string status
        integer has_extra
        string extra_role
    }
    user_group_role {
        integer id_role FK
        integer grant
        integer revoke
    }
    user_group one--many user_group_item : user_group_user_group_item
    user_group one--many user_group_role : user_group_user_group_role
    user_group_role one--many role : user_group_role_role
    user_group_item one--many user : user_group_item_user_item

USERS tab

  1. User - The user that is part of the group.
  2. Last check - The date of the last check.
  3. Status - Shows the missing roles.
  4. Has extra - Shows true if the user has extra roles.
  5. Extra roles - Shows the extra roles of the user.

ROLES tab

  1. Role - The name of the roles.
  2. Grant - If is set to true it will add the role to the user.
  3. Revoke - If is set to true it will remove the role from the user.