mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Merge pull request #2400 from delthas/feature-tokens-days
Add support for configurable OAuth tokens and refresh tokens lifetime
This commit is contained in:
commit
93a76b3c05
2 changed files with 4 additions and 2 deletions
|
@ -28,8 +28,8 @@ class AuthServiceProvider extends ServiceProvider
|
|||
|
||||
if(config('pixelfed.oauth_enabled')) {
|
||||
Passport::routes(null, ['middleware' => ['twofactor', \Fruitcake\Cors\HandleCors::class]]);
|
||||
Passport::tokensExpireIn(now()->addDays(15));
|
||||
Passport::refreshTokensExpireIn(now()->addDays(30));
|
||||
Passport::tokensExpireIn(now()->addDays(config('instance.oauth.token_expiration')));
|
||||
Passport::refreshTokensExpireIn(now()->addDays(config('instance.oauth.refresh_expiration')));
|
||||
Passport::enableImplicitGrant();
|
||||
if(config('instance.oauth.pat.enabled')) {
|
||||
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
|
||||
|
|
|
@ -55,6 +55,8 @@ return [
|
|||
],
|
||||
|
||||
'oauth' => [
|
||||
'token_expiration' => env('OAUTH_TOKEN_DAYS', 15),
|
||||
'refresh_expiration' => env('OAUTH_REFRESH_DAYS', 30),
|
||||
'pat' => [
|
||||
'enabled' => env('OAUTH_PAT_ENABLED', false),
|
||||
'id' => env('OAUTH_PAT_ID'),
|
||||
|
|
Loading…
Reference in a new issue