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