mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
- public sharing refactored part 2
This commit is contained in:
8
resources/js/router.js
vendored
8
resources/js/router.js
vendored
@@ -309,7 +309,7 @@ const routesAdmin = [
|
||||
const routesShared = [
|
||||
{
|
||||
name: 'Shared',
|
||||
path: '/shared/:token',
|
||||
path: '/share/:token',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared" */ './views/Shared'),
|
||||
meta: {
|
||||
@@ -318,7 +318,7 @@ const routesShared = [
|
||||
children: [
|
||||
{
|
||||
name: 'SharedFileBrowser',
|
||||
path: '/shared/:token/files',
|
||||
path: '/share/:token/files',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/file-browser" */ './views/Shared/SharedFileBrowser'),
|
||||
meta: {
|
||||
@@ -327,7 +327,7 @@ const routesShared = [
|
||||
},
|
||||
{
|
||||
name: 'SharedSingleFile',
|
||||
path: '/shared/:token/file',
|
||||
path: '/share/:token/file',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/single-file" */ './views/Shared/SharedSingleFile'),
|
||||
meta: {
|
||||
@@ -336,7 +336,7 @@ const routesShared = [
|
||||
},
|
||||
{
|
||||
name: 'SharedAuthentication',
|
||||
path: '/shared/:token/authenticate',
|
||||
path: '/share/:token/authenticate',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared/authenticate" */ './views/Shared/SharedAuthentication'),
|
||||
meta: {
|
||||
|
||||
Reference in New Issue
Block a user