Fix: Webmail-Root leitet auf Webmail-Login statt UI-Login weiter

main v1.1.446
boban 2026-04-29 18:41:01 +02:00
parent c48a5c7e02
commit eff76f6568
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ use Illuminate\Support\Facades\Route;
// Domain-wrapping and naming are applied in bootstrap/app.php. // Domain-wrapping and naming are applied in bootstrap/app.php.
// This file only defines the routes themselves. // This file only defines the routes themselves.
// Root → redirect to UI admin login; webmail login is at /login // Root → redirect to webmail login
Route::get('/', fn() => redirect()->away(config('app.url') . '/login'))->name('root'); Route::get('/', fn() => redirect()->to(route('ui.webmail.login')))->name('root');
Route::get('/login', Login::class)->name('login'); Route::get('/login', Login::class)->name('login');
Route::get('/inbox', Inbox::class)->name('inbox'); Route::get('/inbox', Inbox::class)->name('inbox');
Route::get('/compose', Compose::class)->name('compose'); Route::get('/compose', Compose::class)->name('compose');