misc_pterodactyl-panel/app/Providers/AuthServiceProvider.php

32 lines
726 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Providers;
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 = [
2016-01-09 03:22:57 +00:00
'Pterodactyl\Models\Server' => 'Pterodactyl\Policies\ServerPolicy'
];
/**
* Register any application authentication / authorization services.
*
* @param \Illuminate\Contracts\Auth\Access\Gate $gate
* @return void
*/
public function boot(GateContract $gate)
{
parent::registerPolicies($gate);
//
}
}