Role Assignment
Roles are what connects users to permissions. Adding or removing roles to and from users indirectly controls to what extend users can interact with your BOMnipotent Server instance.
For your convenience, several default roles are created upon starting BOMnipotent Server for the first time. In addition, BOMnipotent knows of the admin role , which receives some special treatment.
To modify or even view user roles, your user account needs the USER_MANAGEMENT permission.
Listing
To list all roles of all users, call
bomnipotent_client user-role list
╭──────────────────┬─────────────┬───────────────────────────╮
│ User Email │ User Role │ Last Updated │
├──────────────────┼─────────────┼───────────────────────────┤
│ info@quantumwire │ bom_manager │ 2025-03-22 04:27:33.71579 │
│ │ │ 7 UTC │
│ info@wildeheide │ bom_manager │ 2025-03-22 04:26:08.83708 │
│ │ │ 3 UTC │
╰──────────────────┴─────────────┴───────────────────────────╯
Adding
To add a new role to a user, call
bomnipotent_client user-role add <EMAIL> <ROLE>
[INFO] Added role to user
The user account needs to exist on the server at this point, the role does not.
Only users with the admin role can add the admin role to other users.
Removing
To remove a role from a user, call
bomnipotent_client user-role remove <EMAIL> <ROLE>
[INFO] Removed role bom_manager from user info@wildeheide
This will show an error if either does not exist:
[ERROR] Received response:
404 Not Found
User with email info@wildeheide does not have role bom_manager
Only users with the admin role can remove the admin role from other users.