Skip to content

Commit

Permalink
Add user roles and group permission on navigation menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kahummer committed Sep 7, 2024
1 parent a0bbace commit 14576dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ export function getRoutes(roles: string[], t: TFunction, userRole: UserRole): Ro
title: t('User Groups'),
key: 'user-groups',
url: URL_USER_GROUPS,
permissions: ['iam_group.read'],
permissions: ['iam_user_group.read'],
},
{
title: t('User Roles'),
key: 'user-roles',
url: URL_USER_ROLES,
permissions: ['iam_role.read'],
permissions: ['iam_user_role.read'],
},
],
},
Expand Down

0 comments on commit 14576dc

Please sign in to comment.