adrema/app/Providers/AuthServiceProvider.php

35 lines
858 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
2023-05-17 00:22:43 +02:00
use Laravel\Passport\Passport;
2020-04-10 20:32:12 +02: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();
2023-05-17 00:22:43 +02:00
Passport::tokensExpireIn(now()->addYears(999));
Passport::refreshTokensExpireIn(now()->addYears(999));
Passport::personalAccessTokensExpireIn(now()->addYears(999));
Passport::tokensCan([
'contribution-generate' => 'Create Contribution PDFs',
]);
2020-04-10 20:32:12 +02:00
}
}