|
@@ -35,13 +35,15 @@ class AuthServiceProvider extends ServiceProvider
|
|
Passport::setDefaultScope([
|
|
Passport::setDefaultScope([
|
|
'read',
|
|
'read',
|
|
'write',
|
|
'write',
|
|
- 'follow'
|
|
|
|
|
|
+ 'follow',
|
|
|
|
+ 'push'
|
|
]);
|
|
]);
|
|
|
|
|
|
Passport::tokensCan([
|
|
Passport::tokensCan([
|
|
'read' => 'Full read access to your account',
|
|
'read' => 'Full read access to your account',
|
|
'write' => 'Full write access to your account',
|
|
'write' => 'Full write access to your account',
|
|
- 'follow' => 'Ability to follow other profiles'
|
|
|
|
|
|
+ 'follow' => 'Ability to follow other profiles',
|
|
|
|
+ 'push' => ''
|
|
]);
|
|
]);
|
|
}
|
|
}
|
|
|
|
|