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

* better oauth provider loading * add auth frontend * add configs for all default providers * add more default providers * add env variables to enable oauth providers * small refactor to link/ unlink routes * add oauth tab to (admin) profile * use redirects instead of exceptions * add notification if no oauth user is found * use import in config * remove whmcs provider * replace hardcoded links with `route` * redirect to account page on unlink * remove unnecessary controller and handle linking/ unlinking in action * only show oauth tab if at least one oauth provider is enabled
22 lines
852 B
PHP
22 lines
852 B
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('/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)).+');
|