Fix front-end stuff

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2023-03-23 20:39:39 +01:00
parent 986ae45f52
commit c4e9f88e85
23 changed files with 229 additions and 83 deletions

View File

@@ -44,7 +44,7 @@ export const userRoutes: RouteRecordRaw[] = [
},
},
{
path: "/resend-instructions",
path: "/resend-instructions/:email?",
name: UserRouteName.RESEND_CONFIRMATION,
component: (): Promise<any> =>
import("@/views/User/ResendConfirmation.vue"),
@@ -57,7 +57,7 @@ export const userRoutes: RouteRecordRaw[] = [
},
},
{
path: "/password-reset/send",
path: "/password-reset/send/:email?",
name: UserRouteName.SEND_PASSWORD_RESET,
component: (): Promise<any> => import("@/views/User/SendPasswordReset.vue"),
props: true,