Skip to content

Commit

Permalink
fix: add service accounts to app permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-chaturvedi committed Oct 24, 2024
1 parent 816670c commit 3b21285
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions backend/api/utils/access/roles.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"Logs": ["create", "read", "update", "delete"],
"Tokens": ["create", "read", "update", "delete"],
"Members": ["create", "read", "update", "delete"],
"ServiceAccounts": ["create", "read", "update", "delete"],
"Integrations": ["create", "read", "update", "delete"],
"EncryptionMode": ["read", "update"],
},
Expand All @@ -46,6 +47,7 @@
"Logs": ["create", "read", "update", "delete"],
"Tokens": ["create", "read", "update", "delete"],
"Members": ["create", "read", "update", "delete"],
"ServiceAccounts": ["create", "read", "update", "delete"],
"Integrations": ["create", "read", "update", "delete"],
"EncryptionMode": ["read", "update"],
},
Expand Down Expand Up @@ -76,6 +78,7 @@
"Logs": ["read"],
"Tokens": ["read", "create"],
"Members": ["read"],
"ServiceAccounts": ["create"],
"Integrations": ["create", "read", "update", "delete"],
"EncryptionMode": ["read", "update"],
},
Expand Down

0 comments on commit 3b21285

Please sign in to comment.