update route

This commit is contained in:
2026-05-16 20:37:29 -05:00
parent a1da887323
commit 615036dd29

View File

@@ -65,7 +65,7 @@ class EveLoginController extends Controller
]); ]);
return redirect() return redirect()
->route('login') ->route('login.eve')
->with('error', 'EVE token exchange failed. Check client ID, client secret, and redirect URI.'); ->with('error', 'EVE token exchange failed. Check client ID, client secret, and redirect URI.');
} catch (Throwable $e) { } catch (Throwable $e) {
Log::error('EVE SSO callback failed', [ Log::error('EVE SSO callback failed', [
@@ -76,7 +76,7 @@ class EveLoginController extends Controller
report($e); report($e);
return redirect() return redirect()
->route('login') ->route('login.eve')
->with('error', 'SSO login failed. Please try again.' . $e); ->with('error', 'SSO login failed. Please try again.' . $e);
} }
} }