mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-26 06:34:41 +00:00
deleted frontend code
This commit is contained in:
Vendored
-243
@@ -17,51 +17,6 @@ const routesAdmin = [
|
||||
title: 'dashboard',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Invoices',
|
||||
path: '/admin/invoices',
|
||||
component: () => import(/* webpackChunkName: "chunks/invoices" */ '../views/Admin/Invoices'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'transactions',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Subscriptions',
|
||||
path: '/admin/subscriptions',
|
||||
component: () => import(/* webpackChunkName: "chunks/subscriptions" */ '../views/Admin/Subscriptions'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'subscriptions',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Pages',
|
||||
path: '/admin/pages',
|
||||
component: () => import(/* webpackChunkName: "chunks/pages" */ '../views/Admin/Pages'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'pages',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'PageEdit',
|
||||
path: '/admin/pages/:slug',
|
||||
component: () => import(/* webpackChunkName: "chunks/page-edit" */ '../views/Admin/Pages/PageEdit'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'edit_page',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Plans',
|
||||
path: '/admin/plans',
|
||||
component: () => import(/* webpackChunkName: "chunks/plans" */ '../views/Admin/Plans'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'pricing_plans',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Users',
|
||||
path: '/admin/users',
|
||||
@@ -80,30 +35,6 @@ const routesAdmin = [
|
||||
title: 'create_user',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'CreateFixedPlan',
|
||||
path: '/admin/plan/create/fixed',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-create/fixed" */ '../views/Admin/Plans/Create/CreateFixedPlan'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'create_plan',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'CreateMeteredPlan',
|
||||
path: '/admin/plan/create/metered',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-create/metered" */ '../views/Admin/Plans/Create/CreateMeteredPlan'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'create_plan',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/admin/user/:id',
|
||||
component: () => import(/* webpackChunkName: "chunks/user" */ '../views/Admin/Users/User'),
|
||||
@@ -136,18 +67,6 @@ const routesAdmin = [
|
||||
title: 'routes_title.users_storage_usage',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'UserSubscription',
|
||||
path: '/admin/user/:id/subscription',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/user-subscription" */ '../views/Admin/Users/UserTabs/UserSubscription'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'subscription',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'UserPassword',
|
||||
path: '/admin/user/:id/password',
|
||||
@@ -174,132 +93,6 @@ const routesAdmin = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'PlanFixed',
|
||||
path: '/admin/plan/:id',
|
||||
component: () => import(/* webpackChunkName: "chunks/plan" */ '../views/Admin/Plans/FixedPlan'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'PlanFixedSubscribers',
|
||||
path: '/admin/plan/:id/fixed/subscribers',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-subscribers" */ '../views/Admin/Plans/Tabs/PlanSubscribers'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'subscribers',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'PlanFixedSettings',
|
||||
path: '/admin/plan/:id/fixed/settings',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-settings" */ '../views/Admin/Plans/Tabs/PlanFixedSettings'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan_settings',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'PlanFixedDelete',
|
||||
path: '/admin/plan/:id/fixed/delete',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/plan-delete" */ '../views/Admin/Plans/Tabs/PlanDelete'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan_delete',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'PlanMetered',
|
||||
path: '/admin/plan/:id',
|
||||
component: () => import(/* webpackChunkName: "chunks/plan" */ '../views/Admin/Plans/MeteredPlan'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'PlanMeteredSubscribers',
|
||||
path: '/admin/plan/:id/metered/subscribers',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-subscribers" */ '../views/Admin/Plans/Tabs/PlanSubscribers'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'subscribers',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'PlanMeteredSettings',
|
||||
path: '/admin/plan/:id/metered/settings',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/plan-settings" */ '../views/Admin/Plans/Tabs/PlanMeteredSettings'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan_settings',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'PlanMeteredDelete',
|
||||
path: '/admin/plan/:id/metered/delete',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/plan-delete" */ '../views/Admin/Plans/Tabs/PlanDelete'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'plan_delete',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'PaymentSettings',
|
||||
path: '/admin/payments',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/payments" */ '../views/Admin/PaymentSettings/PaymentSettings'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'Payment Settings',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'AppBillings',
|
||||
path: '/admin/payments/billings',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/payments/billings" */ '../views/Admin/PaymentSettings/PaymentSettingsTab/Billings'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'billings',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppPayments',
|
||||
path: '/admin/payments/payments',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/payments/settings" */ '../views/Admin/PaymentSettings/PaymentSettingsTab/Payments'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'payments',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'AppSettings',
|
||||
path: '/admin/settings',
|
||||
@@ -322,18 +115,6 @@ const routesAdmin = [
|
||||
title: 'appearance',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppIndex',
|
||||
path: '/admin/settings/index',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/app-index" */ '../views/Admin/Settings/AppSettingsTabs/Index'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'Index',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppEnvironment',
|
||||
path: '/admin/settings/environment',
|
||||
@@ -358,30 +139,6 @@ const routesAdmin = [
|
||||
title: 'others',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppSignInUp',
|
||||
path: '/admin/settings/sign-in',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/app-sign-in-out" */ '../views/Admin/Settings/AppSettingsTabs/SignInUp'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'Sign In/Up',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppAdsense',
|
||||
path: '/admin/settings/adsense',
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "chunks/app-adsense" */ '../views/Admin/Settings/AppSettingsTabs/Adsense'
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'Adsense',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'AppServer',
|
||||
path: '/admin/settings/server',
|
||||
|
||||
Vendored
-17
@@ -1,13 +1,4 @@
|
||||
const routesAuth = [
|
||||
{
|
||||
name: 'SuccessfullyVerified',
|
||||
path: '/successfully-verified',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/successfully-email-verified" */ '../views/Auth/SuccessfullyEmailVerified'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SuccessfullySend',
|
||||
path: '/successfully-send',
|
||||
@@ -24,14 +15,6 @@ const routesAuth = [
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SignUp',
|
||||
path: '/sign-up',
|
||||
component: () => import(/* webpackChunkName: "chunks/sign-up" */ '../views/Auth/SignUp'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'ForgottenPassword',
|
||||
path: '/forgotten-password',
|
||||
|
||||
Vendored
-17
@@ -38,23 +38,6 @@ const routesFile = [
|
||||
requiresAuth: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'TeamFolders',
|
||||
path: '/platform/team-folders/:id?',
|
||||
component: () => import(/* webpackChunkName: "chunks/team-folders" */ '../views/FileView/TeamFolders'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'SharedWithMe',
|
||||
path: '/platform/shared-with-me/:id?',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/shared-with-me" */ '../views/FileView/SharedWithMe'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
Vendored
-28
@@ -1,28 +0,0 @@
|
||||
const routesIndex = [
|
||||
{
|
||||
name: 'Homepage',
|
||||
path: '/',
|
||||
component: () => import(/* webpackChunkName: "chunks/homepage" */ '../views/Frontpage/Homepage'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'DynamicPage',
|
||||
path: '/page/:slug',
|
||||
component: () => import(/* webpackChunkName: "chunks/dynamic-page" */ '../views/Frontpage/DynamicPage'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'ContactUs',
|
||||
path: '/contact-us',
|
||||
component: () => import(/* webpackChunkName: "chunks/contact-us" */ '../views/Frontpage/ContactUs'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export default routesIndex
|
||||
Vendored
-12
@@ -1,12 +0,0 @@
|
||||
const routesTeam = [
|
||||
{
|
||||
name: 'Invitation',
|
||||
path: '/team-folder-invitation/:id',
|
||||
component: () => import(/* webpackChunkName: "chunks/invitation" */ '../views/Teams/Invitation'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export default routesTeam
|
||||
-23
@@ -1,23 +0,0 @@
|
||||
const routesShared = [
|
||||
{
|
||||
name: 'Request',
|
||||
path: '/request',
|
||||
component: () => import(/* webpackChunkName: "chunks/request" */ '../views/UploadRequest'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'RequestUpload',
|
||||
path: '/request/:token/upload/:id?',
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "chunks/request-upload" */ '../views/FileView/UploadRequestFiles'),
|
||||
meta: {
|
||||
requiresAuth: false,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export default routesShared
|
||||
Vendored
-9
@@ -34,15 +34,6 @@ const routesUser = [
|
||||
title: 'storage',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Billing',
|
||||
path: '/user/settings/billing',
|
||||
component: () => import(/* webpackChunkName: "chunks/billing" */ '../views/User/Billing'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'billing',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user