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 <jus@bitgrid.net>
This commit is contained in:
Julius Knorr 2025-11-05 21:26:13 +01:00
parent e88d140626
commit 853b264cc9

View file

@ -163,7 +163,7 @@ export default {
methods: {
passwordResetFinished() {
window.location.href = generateUrl('login')
window.location.href = generateUrl('login') + '?direct=1'
},
},
}