37 lines
934 B
PHP
37 lines
934 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Form\Models\Form;
|
|
use App\Form\Policies\FormPolicy;
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
use Laravel\Passport\Passport;
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The policy mappings for the application.
|
|
*
|
|
* @var array<class-string, class-string>
|
|
*/
|
|
protected $policies = [
|
|
Form::class => FormPolicy::class,
|
|
];
|
|
|
|
/**
|
|
* Register any authentication / authorization services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->registerPolicies();
|
|
Passport::tokensExpireIn(now()->addYears(999));
|
|
Passport::refreshTokensExpireIn(now()->addYears(999));
|
|
Passport::personalAccessTokensExpireIn(now()->addYears(999));
|
|
Passport::tokensCan([
|
|
'contribution-generate' => 'Create Contribution PDFs',
|
|
]);
|
|
}
|
|
}
|