48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Laravel\Sanctum\Sanctum;
|
|
use Pterodactyl\Models\User;
|
|
use Pterodactyl\Models\Server;
|
|
use Pterodactyl\Models\Subuser;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Pterodactyl\Observers\UserObserver;
|
|
use Pterodactyl\Observers\ServerObserver;
|
|
use Pterodactyl\Observers\SubuserObserver;
|
|
use Pterodactyl\Models\PersonalAccessToken;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot()
|
|
{
|
|
Schema::defaultStringLength(191);
|
|
|
|
User::observe(UserObserver::class);
|
|
Server::observe(ServerObserver::class);
|
|
Subuser::observe(SubuserObserver::class);
|
|
|
|
/*
|
|
* @see https://laravel.com/docs/8.x/sanctum#overriding-default-models
|
|
*/
|
|
Sanctum::usePersonalAccessTokenModel(PersonalAccessToken::class);
|
|
}
|
|
|
|
/**
|
|
* Register application service providers.
|
|
*/
|
|
public function register()
|
|
{
|
|
Sanctum::ignoreMigrations();
|
|
|
|
// Only load the settings service provider if the environment
|
|
// is configured to allow it.
|
|
if (!config('pterodactyl.load_environment_only', false) && $this->app->environment() !== 'testing') {
|
|
$this->app->register(SettingsServiceProvider::class);
|
|
}
|
|
}
|
|
}
|