forked from Alex/Pterodactyl-Panel
25 lines
778 B
PHP
25 lines
778 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Pterodactyl\Http\Middleware\RequireTwoFactorAuthentication;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Base Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Endpoint: /
|
|
|
|
|
*/
|
|
Route::get('/', 'IndexController@index')->name('index')->fallback();
|
|
Route::get('/account', 'IndexController@index')
|
|
->withoutMiddleware(RequireTwoFactorAuthentication::class)
|
|
->name('account');
|
|
|
|
Route::get('/locales/{locale}/{namespace}.json', 'LocaleController')
|
|
->withoutMiddleware(RequireTwoFactorAuthentication::class)
|
|
->where('namespace', '.*');
|
|
|
|
Route::get('/{react}', 'IndexController@index')
|
|
->where('react', '^(?!(\/)?(api|auth|admin|daemon)).+');
|