36 lines
835 B
PHP
36 lines
835 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pterodactyl\Providers;
|
||
|
|
||
|
use Pterodactyl\Models\Server;
|
||
|
use Pterodactyl\Policies\ServerPolicy;
|
||
|
|
||
|
use Illuminate\Contracts\Auth\Access\Gate as GateContract;
|
||
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||
|
|
||
|
class AuthServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* The policy mappings for the application.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $policies = [
|
||
|
'Pterodactyl\Model' => 'Pterodactyl\Policies\ModelPolicy',
|
||
|
Server::class => ServerPolicy::class,
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* Register any application authentication / authorization services.
|
||
|
*
|
||
|
* @param \Illuminate\Contracts\Auth\Access\Gate $gate
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot(GateContract $gate)
|
||
|
{
|
||
|
parent::registerPolicies($gate);
|
||
|
|
||
|
//
|
||
|
}
|
||
|
}
|