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