1
0
Fork 0

Update AuthServiceProvider

This commit is contained in:
Daniel Supernault 2024-02-09 20:54:17 -07:00
parent 62b9eef805
commit 7a7b4bc717
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 6 additions and 5 deletions

View File

@ -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) {