From 48bda3032c6890d19da2f0df4239c7f44ebea9c1 Mon Sep 17 00:00:00 2001 From: Julius Knorr Date: Wed, 5 Nov 2025 21:26:13 +0100 Subject: [PATCH] fix: Force direct login after password reset With SSO setups users may otherwise be redirected to the IdP directly instead of the regular login form that they reset the password for Signed-off-by: Julius Knorr --- core/src/views/Login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/views/Login.vue b/core/src/views/Login.vue index a6fe8442779..1fdbb254991 100644 --- a/core/src/views/Login.vue +++ b/core/src/views/Login.vue @@ -154,7 +154,7 @@ export default { methods: { passwordResetFinished() { - window.location.href = generateUrl('login') + window.location.href = generateUrl('login') + '?direct=1' }, }, }