mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 10:54:46 +02:00

* Remove old admin * Remove controller test * Remove unused exceptions * Remove unused files * More small tweaks * Fix doc block * Remove unused service * Restore these * Add back autoDeploy * Revert "Add back autoDeploy" This reverts commit 630c1e08acf8056ce8e612f376fcd00c23d90aea. * Add these back * Add back exception * Remove ApiController again --------- Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: notCharles <charles@pelican.dev>
25 lines
1.0 KiB
PHP
25 lines
1.0 KiB
PHP
<?php
|
|
|
|
use App\Filament\Pages\Installer\PanelInstaller;
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\Base;
|
|
use App\Http\Middleware\RequireTwoFactorAuthentication;
|
|
|
|
Route::get('/', [Base\IndexController::class, 'index'])->name('index')->fallback();
|
|
Route::get('/account', [Base\IndexController::class, 'index'])
|
|
->withoutMiddleware(RequireTwoFactorAuthentication::class)
|
|
->name('account');
|
|
|
|
Route::get('/account/oauth/link', [Base\OAuthController::class, 'link'])->name('account.oauth.link');
|
|
Route::get('/account/oauth/unlink', [Base\OAuthController::class, 'unlink'])->name('account.oauth.unlink');
|
|
|
|
Route::get('/locales/locale.json', Base\LocaleController::class)
|
|
->withoutMiddleware(['auth', RequireTwoFactorAuthentication::class])
|
|
->where('namespace', '.*');
|
|
|
|
Route::get('installer', PanelInstaller::class)->name('installer')
|
|
->withoutMiddleware(['auth', RequireTwoFactorAuthentication::class]);
|
|
|
|
Route::get('/{react}', [Base\IndexController::class, 'index'])
|
|
->where('react', '^(?!(\/)?(api|auth|admin|daemon)).+');
|