2020-04-10 20:32:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-01-13 21:53:39 +01:00
|
|
|
use App\Form\Models\Form;
|
|
|
|
use App\Form\Policies\FormPolicy;
|
2020-04-10 20:32:12 +02:00
|
|
|
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.
|
|
|
|
*
|
2024-01-13 21:53:39 +01:00
|
|
|
* @var array<class-string, class-string>
|
2020-04-10 20:32:12 +02:00
|
|
|
*/
|
|
|
|
protected $policies = [
|
2024-01-13 21:53:39 +01:00
|
|
|
Form::class => FormPolicy::class,
|
2020-04-10 20:32:12 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
}
|