mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-16 18:25:01 +00:00
37 lines
1.0 KiB
JavaScript
Vendored
37 lines
1.0 KiB
JavaScript
Vendored
const routesAuth = [
|
|
{
|
|
name: 'SuccessfullySend',
|
|
path: '/successfully-send',
|
|
component: () => import(/* webpackChunkName: "chunks/successfully-email-send" */ '../views/Auth/SuccessfullySendEmail'),
|
|
meta: {
|
|
requiresAuth: false,
|
|
},
|
|
},
|
|
{
|
|
name: 'SignIn',
|
|
path: '/',
|
|
component: () => import(/* webpackChunkName: "chunks/sign-in" */ '../views/Auth/SignIn'),
|
|
meta: {
|
|
requiresAuth: false,
|
|
},
|
|
},
|
|
{
|
|
name: 'ForgottenPassword',
|
|
path: '/forgotten-password',
|
|
component: () => import(/* webpackChunkName: "chunks/forgotten-password" */ '../views/Auth/ForgottenPassword'),
|
|
meta: {
|
|
requiresAuth: false,
|
|
},
|
|
},
|
|
{
|
|
name: 'CreateNewPassword',
|
|
path: '/create-new-password',
|
|
component: () => import(/* webpackChunkName: "chunks/create-new-password" */ '../views/Auth/CreateNewPassword'),
|
|
meta: {
|
|
requiresAuth: false,
|
|
},
|
|
},
|
|
]
|
|
|
|
export default routesAuth
|