mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
32 lines
672 B
PHP
32 lines
672 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\User;
|
|
use App\Policies\PlaylistPolicy;
|
|
use App\Policies\UserPolicy;
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The policy mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $policies = [
|
|
Playlist::class => PlaylistPolicy::class,
|
|
User::class => UserPolicy::class,
|
|
];
|
|
|
|
/**
|
|
* Register any application authentication / authorization services.
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->registerPolicies();
|
|
|
|
//
|
|
}
|
|
}
|