fix: remove public scope from app role

This commit is contained in:
Christy Jacob 2023-09-06 23:04:44 +00:00
parent 732a2b4a98
commit 4b31411a5f

View file

@ -95,6 +95,6 @@ return [
],
Auth::USER_ROLE_APPS => [
'label' => 'Applications',
'scopes' => ['public', 'health.read', 'graphql'],
'scopes' => ['health.read', 'graphql'],
],
];