From 7341515dad84839c62ac9694d33ebcec32139e54 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 13 Dec 2021 12:02:21 +0100 Subject: [PATCH] Send to /thx/login not /reset/login so the user get's a message to check to validate his account. --- frontend/src/views/Pages/Login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/Pages/Login.vue b/frontend/src/views/Pages/Login.vue index 3f434268a..d7f09ea4c 100755 --- a/frontend/src/views/Pages/Login.vue +++ b/frontend/src/views/Pages/Login.vue @@ -107,7 +107,7 @@ export default { .catch((error) => { this.$toasted.global.error(this.$t('error.no-account')) if (error.message.includes('User email not validated')) { - this.$router.push('/reset/login') + this.$router.push('/thx/login') } loader.hide() })