From 28ea821fa8574c3429245abd72506813bd4e541e Mon Sep 17 00:00:00 2001 From: "joel.tazzari" Date: Wed, 15 Apr 2026 19:14:56 +0200 Subject: [PATCH] Fix variables --- ui/src/views/auth/Login.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/views/auth/Login.vue b/ui/src/views/auth/Login.vue index bded0820462..691fd75cf34 100644 --- a/ui/src/views/auth/Login.vue +++ b/ui/src/views/auth/Login.vue @@ -430,9 +430,11 @@ export default { getKeycloakUrl (from) { const rootURl = this.keycloakauthorizeurl const options = { + redirect_uri: this.keycloakredirecturi, client_id: this.keycloakclientid, + response_type: 'code', scope: 'openid email', - state: from + state: 'cloudstack' } const qs = new URLSearchParams(options)