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

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:46:59 +00:00
co-authored by Cursor
parent 9aad952eb0
commit 701e83d867
+1 -1
View File
@@ -17,7 +17,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/', fn () => auth()->check()
? redirect()->route('merchant.dashboard')
: redirect()->away((string) config('ladill.marketing_url')))->name('merchant.root');
: redirect()->route('sso.connect'))->name('merchant.root');
Route::get('/login', [SsoLoginController::class, 'connect'])->name('login');
Route::get('/sso/connect', [SsoLoginController::class, 'connect'])->name('sso.connect');