mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
67 lines
1.5 KiB
JavaScript
Vendored
67 lines
1.5 KiB
JavaScript
Vendored
const routesAuth = [
|
|
{
|
|
name: 'SocialiteCallback',
|
|
path: '/socialite/:provider/callback',
|
|
component: () =>
|
|
import(/* webpackChunkName: "chunks/email-verified" */ '../views/Auth/SocialiteCallback'),
|
|
meta: {
|
|
requiresAuth: false
|
|
},
|
|
},
|
|
{
|
|
name: 'SuccessfullyVerified',
|
|
path: '/successfully-verified',
|
|
component: () =>
|
|
import(/* webpackChunkName: "chunks/email-verified" */ '../views/Auth/SuccessfullyEmailVerified'),
|
|
meta: {
|
|
requiresAuth: false
|
|
},
|
|
},
|
|
{
|
|
name: 'SuccessfullySend',
|
|
path: '/successfully-send',
|
|
component: () =>
|
|
import(/* webpackChunkName: "chunks/email-verified" */ '../views/Auth/SuccessfullySendEmail'),
|
|
meta: {
|
|
requiresAuth: false
|
|
},
|
|
},
|
|
{
|
|
name: 'SignIn',
|
|
path: '/sign-in',
|
|
component: () =>
|
|
import(/* webpackChunkName: "chunks/sign-in" */ '../views/Auth/SignIn'),
|
|
meta: {
|
|
requiresAuth: false
|
|
},
|
|
},
|
|
{
|
|
name: 'SignUp',
|
|
path: '/sign-up',
|
|
component: () =>
|
|
import(/* webpackChunkName: "chunks/sign-up" */ '../views/Auth/SignUp'),
|
|
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 |