Update config, make oauth opt-in

This commit is contained in:
Daniel Supernault 2019-04-17 19:45:23 -06:00
parent a665b90b60
commit bedb42baca
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
2 changed files with 17 additions and 13 deletions

View file

@ -25,6 +25,7 @@ class AuthServiceProvider extends ServiceProvider
{
$this->registerPolicies();
if(config('pixelfed.oauth_enabled')) {
Passport::routes();
Passport::tokensExpireIn(now()->addDays(15));
Passport::refreshTokensExpireIn(now()->addDays(30));
@ -40,4 +41,5 @@ class AuthServiceProvider extends ServiceProvider
'user:write' => 'This scope lets an app "Change your profile information"',
]);
}
}
}

View file

@ -276,4 +276,6 @@ return [
]
]
],
'oauth_enabled' => env('OAUTH_ENABLED', false),
];