1
0
Fork 0
mirror of synced 2024-10-03 19:53:33 +13:00

Fix roles

This commit is contained in:
Jake Barnby 2022-09-20 19:03:04 +12:00
parent e9f75d32a1
commit 48ede78894
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -6,6 +6,7 @@ $member = [
'public',
'home',
'console',
'graphql',
'account',
'teams.read',
'teams.write',
@ -22,6 +23,7 @@ $member = [
];
$admins = [
'graphql',
'teams.read',
'teams.write',
'documents.read',
@ -58,7 +60,6 @@ return [
'public',
'home',
'console',
'graphql',
'documents.read',
'documents.write',
'files.read',
@ -86,6 +87,6 @@ return [
],
Auth::USER_ROLE_APPS => [
'label' => 'Applications',
'scopes' => ['health.read'],
'scopes' => ['health.read', 'graphql'],
],
];