12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- const routes = [
- // {
- // path: '/',
- // component: () => import('../layouts/MainLayout.vue'),
- // children: [
- // { path: '', component: () => import('../pages/Index.vue') },
- // { path: 'n/:editor?', component: () => import('../pages/Index.vue') }
- // ]
- // },
- // {
- // path: '/login',
- // component: () => import('../layouts/AuthLayout.vue'),
- // children: [
- // { path: '', component: () => import('../pages/Login.vue') }
- // ]
- // },
- // {
- // path: '/p',
- // component: () => import('../layouts/ProfileLayout.vue'),
- // children: [
- // { path: '', redirect: '/p/profile' },
- // { path: 'profile', component: () => import('../pages/Profile.vue') }
- // ]
- // },
- {
- path: '/_admin',
- component: () => import('../layouts/AdminLayout.vue'),
- children: [
- { path: '', redirect: '/_admin/dashboard' },
- { path: 'dashboard', component: () => import('../pages/AdminDashboard.vue') },
- { path: 'sites', component: () => import('../pages/AdminSites.vue') },
- // -> Site
- { path: ':siteid/general', component: () => import('../pages/AdminGeneral.vue') },
- { path: ':siteid/editors', component: () => import('../pages/AdminEditors.vue') },
- { path: ':siteid/locale', component: () => import('../pages/AdminLocale.vue') },
- { path: ':siteid/login', component: () => import('../pages/AdminLogin.vue') },
- // { path: ':siteid/navigation', component: () => import('../pages/AdminNavigation.vue') },
- { path: ':siteid/storage/:id?', component: () => import('../pages/AdminStorage.vue') },
- // { path: ':siteid/rendering', component: () => import('../pages/AdminRendering.vue') },
- // { path: ':siteid/theme', component: () => import('../pages/AdminTheme.vue') },
- // -> Users
- // { path: 'auth', component: () => import('../pages/AdminAuth.vue') },
- // { path: 'groups/:id?/:section?', component: () => import('../pages/AdminGroups.vue') },
- // { path: 'users/:id?/:section?', component: () => import('../pages/AdminUsers.vue') },
- // -> System
- // { path: 'api', component: () => import('../pages/AdminApi.vue') },
- // { path: 'extensions', component: () => import('../pages/AdminExtensions.vue') },
- // { path: 'mail', component: () => import('../pages/AdminMail.vue') },
- // { path: 'security', component: () => import('../pages/AdminSecurity.vue') },
- { path: 'system', component: () => import('../pages/AdminSystem.vue') },
- // { path: 'utilities', component: () => import('../pages/AdminUtilities.vue') },
- // { path: 'webhooks', component: () => import('../pages/AdminWebhooks.vue') },
- { path: 'flags', component: () => import('../pages/AdminFlags.vue') }
- ]
- },
- // {
- // path: '/_unknown-site',
- // component: () => import('../pages/UnknownSite.vue')
- // },
- // Always leave this as last one,
- // but you can also remove it
- {
- path: '/:catchAll(.*)*',
- component: () => import('pages/ErrorNotFound.vue')
- }
- ]
- export default routes
|