Fix API keys missing public scope

This commit is contained in:
Jake Barnby
2023-08-22 21:50:40 -04:00
parent c99288229f
commit 83cd30c63c
+1 -1
View File
@@ -92,6 +92,6 @@ return [
],
Auth::USER_ROLE_APPS => [
'label' => 'Applications',
'scopes' => ['health.read', 'graphql'],
'scopes' => ['public', 'health.read', 'graphql'],
],
];