In a few places in /web management interface we allow users to select from one or more roles. We currently use the name of the role in a drop-down list but this is not as informative as it could be. The permissions model has more detail, eg:
[Role.TEAM_ADMIN]: {
name: 'Team Administrator',
description:
'Full control over a specific team, including deletion and admin user management',
scope: RoleScope.RESOURCE_SPECIFIC,
resource: Resource.TEAM,
},
Update the UI to include the description property of each role as well as the name. Could be as extended text in the drop down list or maybe a greyscale sub-heading?
In a few places in /web management interface we allow users to select from one or more roles. We currently use the name of the role in a drop-down list but this is not as informative as it could be. The permissions model has more detail, eg:
Update the UI to include the
descriptionproperty of each role as well as the name. Could be as extended text in the drop down list or maybe a greyscale sub-heading?