From 4aa5dd8aad86fe0088a10ceb6589e5c66ad6e186 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 18 Mar 2024 12:00:00 +0100 Subject: [PATCH] Update Keycloak URL for password change --- .../modules/profile/components/profile/profile.component.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/modules/profile/components/profile/profile.component.ts b/src/app/modules/profile/components/profile/profile.component.ts index 73f7071cb..23bae98c8 100644 --- a/src/app/modules/profile/components/profile/profile.component.ts +++ b/src/app/modules/profile/components/profile/profile.component.ts @@ -122,10 +122,12 @@ export class ProfileComponent implements OnInit { auth.baseUrl + '/realms/' + auth.realm + - '/account/password?referrer=' + + '/protocol/openid-connect/auth?kc_action=UPDATE_PASSWORD&scope=openid&response_type=code&client_id=' + auth.clientId + '&kc_locale=' + - this.translate.currentLang + this.translate.currentLang + + '&redirect_uri=' + + window.location.href ) }