fix(console): display actions v1 with correct permissions #12001 (#12068)

# Which Problems Are Solved
- Users needed broader IAM read permissions to access the Actions V1
page in the console.

# How the Problems Are Solved
- Updates the console route configuration for `/actions` to require
`org.action.read`.

# Additional Context
 - Closes #12001
This commit is contained in:
Ramon
2026-04-28 17:25:21 +02:00
committed by GitHub
parent 24d0f34f39
commit 83919d82b4
+1 -1
View File
@@ -78,7 +78,7 @@ const routes: Routes = [
loadChildren: () => import('./pages/org-actions/actions.module'),
canActivate: [authGuard, roleGuard],
data: {
roles: ['iam.read', 'iam.read'],
roles: ['org.action.read'],
},
},
{