Restore silent SSO on app entry for users switching between apps.
Deploy Ladill Events / deploy (push) Successful in 57s

Guests without a local session try prompt=none SSO first; marketing pages
are only for visitors with no platform session (localhost fix retained).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-18 13:47:17 +00:00
co-authored by Cursor
parent ea612fbc23
commit 632ac64298
+1 -1
View File
@@ -18,7 +18,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/', fn () => auth()->check()
? redirect()->route('events.dashboard')
: redirect()->away((string) config('ladill.marketing_url')))->name('events.root');
: redirect()->route('sso.connect'))->name('events.root');
Route::get('/login', [SsoLoginController::class, 'connect'])->name('login');
Route::get('/sso/connect', [SsoLoginController::class, 'connect'])->name('sso.connect');