✨ Reset password APIs
This commit is contained in:
@ -51,17 +51,28 @@ const router = createRouter({
|
||||
meta: { public: true, title: "Sign up" },
|
||||
},
|
||||
{
|
||||
path: "authorize",
|
||||
path: "/authorize",
|
||||
name: "oauth.authorize",
|
||||
component: () => import("@/views/auth/authorize.vue"),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/users/me/confirm",
|
||||
name: "callback.confirm",
|
||||
component: () => import("@/views/confirm.vue"),
|
||||
meta: { public: true, title: "Confirm registration" },
|
||||
path: "/flow",
|
||||
children: [
|
||||
{
|
||||
path: "confirm",
|
||||
name: "callback.confirm",
|
||||
component: () => import("@/views/flow/confirm.vue"),
|
||||
meta: { public: true, title: "Confirm registration" },
|
||||
},
|
||||
{
|
||||
path: "password-reset",
|
||||
name: "callback.password-reset",
|
||||
component: () => import("@/views/flow/password-reset.vue"),
|
||||
meta: { public: true, title: "Reset password" },
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
})
|
||||
|
Reference in New Issue
Block a user