mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 16:32:15 +00:00
added prettier
This commit is contained in:
74
resources/js/routes/routesShared.js
vendored
74
resources/js/routes/routesShared.js
vendored
@@ -1,42 +1,38 @@
|
||||
const routesShared = [
|
||||
{
|
||||
name: 'Shared',
|
||||
path: '/share/:token',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared" */ '../views/Shared'),
|
||||
meta: {
|
||||
requiresAuth: false
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'Public',
|
||||
path: '/share/:token/files/:id?',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/files" */ '../views/FileView/Public'),
|
||||
meta: {
|
||||
requiresAuth: false
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SharedSingleFile',
|
||||
path: '/share/:token/file',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/single-file" */ '../views/Shared/SharedSingleFile'),
|
||||
meta: {
|
||||
requiresAuth: false
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SharedAuthentication',
|
||||
path: '/share/:token/authenticate',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/authenticate" */ '../views/Shared/SharedAuthentication'),
|
||||
meta: {
|
||||
requiresAuth: false
|
||||
},
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Shared',
|
||||
path: '/share/:token',
|
||||
component: () => import(/* webpackChunkName: "chunks/shared" */ '../views/Shared'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'Public',
|
||||
path: '/share/:token/files/:id?',
|
||||
component: () => import(/* webpackChunkName: "chunks/shared/files" */ '../views/FileView/Public'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SharedSingleFile',
|
||||
path: '/share/:token/file',
|
||||
component: () => import(/* webpackChunkName: "chunks/shared/single-file" */ '../views/Shared/SharedSingleFile'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SharedAuthentication',
|
||||
path: '/share/:token/authenticate',
|
||||
component: () => import(/* webpackChunkName: "chunks/shared/authenticate" */ '../views/Shared/SharedAuthentication'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export default routesShared
|
||||
export default routesShared
|
||||
|
||||
Reference in New Issue
Block a user