Update AuthServiceProvider

This commit is contained in:
Daniel Supernault 2019-09-13 20:17:00 -06:00
parent e359b6b98a
commit 505b9ee732
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 2 deletions

View File

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