1
0
Fork 0
forked from mirror/pixelfed
pixelfed/app/Providers/AuthServiceProvider.php

33 lines
710 B
PHP
Raw Normal View History

2018-04-15 17:56:48 -06:00
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
2018-12-30 21:30:57 -07:00
use Laravel\Passport\Passport;
2018-04-15 17:56:48 -06:00
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
'App\Model' => 'App\Policies\ModelPolicy',
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
2019-02-13 21:33:39 -07:00
// Passport::routes();
// Passport::tokensExpireIn(now()->addDays(15));
// Passport::refreshTokensExpireIn(now()->addDays(30));
2018-04-15 17:56:48 -06:00
}
}