unioil-mobile-api/app/Providers/AuthServiceProvider.php

39 lines
825 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Laravel\Passport\Passport;
use \Carbon\Carbon;
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();
// Passport::routes();
Passport::tokensExpireIn(Carbon::now()->addMonths(10));
Passport::refreshTokensExpireIn(Carbon::now()->addMonths(10));
Passport::enableImplicitGrant();
}
}