Update AuthServiceProvider

pull/4915/head
Daniel Supernault 2024-02-09 20:54:17 -07:00
rodzic 62b9eef805
commit 7a7b4bc717
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 6 dodań i 5 usunięć

Wyświetl plik

@ -31,11 +31,6 @@ class AuthServiceProvider extends ServiceProvider
if(config('instance.oauth.pat.enabled')) {
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
}
Passport::setDefaultScope([
'read',
'write',
'follow',
]);
Passport::tokensCan([
'read' => 'Full read access to your account',
@ -45,6 +40,12 @@ class AuthServiceProvider extends ServiceProvider
'admin:write' => 'Modify all data on the server',
'push' => 'Receive your push notifications'
]);
Passport::setDefaultScope([
'read',
'write',
'follow',
]);
}
// Gate::define('viewWebSocketsDashboard', function ($user = null) {