mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update config, make oauth opt-in
This commit is contained in:
parent
a665b90b60
commit
bedb42baca
2 changed files with 17 additions and 13 deletions
|
@ -25,19 +25,21 @@ class AuthServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
$this->registerPolicies();
|
$this->registerPolicies();
|
||||||
|
|
||||||
Passport::routes();
|
if(config('pixelfed.oauth_enabled')) {
|
||||||
Passport::tokensExpireIn(now()->addDays(15));
|
Passport::routes();
|
||||||
Passport::refreshTokensExpireIn(now()->addDays(30));
|
Passport::tokensExpireIn(now()->addDays(15));
|
||||||
Passport::enableImplicitGrant();
|
Passport::refreshTokensExpireIn(now()->addDays(30));
|
||||||
|
Passport::enableImplicitGrant();
|
||||||
|
|
||||||
Passport::setDefaultScope([
|
Passport::setDefaultScope([
|
||||||
'user:read',
|
'user:read',
|
||||||
'user:write'
|
'user:write'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Passport::tokensCan([
|
Passport::tokensCan([
|
||||||
'user:read' => 'Read a user’s profile info and media',
|
'user:read' => 'Read a user’s profile info and media',
|
||||||
'user:write' => 'This scope lets an app "Change your profile information"',
|
'user:write' => 'This scope lets an app "Change your profile information"',
|
||||||
]);
|
]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -276,4 +276,6 @@ return [
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'oauth_enabled' => env('OAUTH_ENABLED', false),
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue