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>
pull/56225/head
Julius Knorr 2025-11-05 21:26:13 +07:00
parent e88d140626
commit 853b264cc9
1 changed files with 1 additions and 1 deletions

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