2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The policy mappings for the application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $policies = [
|
2016-12-07 23:46:38 +01:00
|
|
|
'Pterodactyl\Models\Server' => 'Pterodactyl\Policies\ServerPolicy',
|
2015-12-06 19:58:49 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application authentication / authorization services.
|
|
|
|
*/
|
2017-04-01 23:59:43 +02:00
|
|
|
public function boot()
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
2017-04-01 23:59:43 +02:00
|
|
|
$this->registerPolicies();
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
}
|