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 554dce6bc7
commit 48bda3032c
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

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