Merge pull request #2754 from pixelfed/staging

Update AuthServiceProvider
This commit is contained in:
daniel 2021-05-11 23:45:33 -06:00 committed by GitHub
commit 9a88d645ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ class AuthServiceProvider extends ServiceProvider
{
$this->registerPolicies();
if(config_cache('pixelfed.oauth_enabled')) {
if(\config_cache('pixelfed.oauth_enabled')) {
Passport::routes(null, ['middleware' => ['twofactor', \Fruitcake\Cors\HandleCors::class]]);
Passport::tokensExpireIn(now()->addDays(config('instance.oauth.token_expiration', 15)));
Passport::refreshTokensExpireIn(now()->addDays(config('instance.oauth.refresh_expiration', 30)));