R.I.P me........

This commit is contained in:
2026-05-06 21:15:12 +03:00
parent a406af54bd
commit 0e6103f138
8 changed files with 1193 additions and 33 deletions

View File

@@ -11,6 +11,7 @@ import OlapColumnsView from '@/views/OlapColumnsView.vue'
import DBConnections from '@/views/DBConnections.vue'
import AdminSettings from '@/views/AdminSettings.vue'
import Profile from '@/views/Profile.vue'
import OLAPConstructor from '@/views/OLAPConstructor.vue'
import NotFound from '@/views/NotFound.vue'
const routes = [
@@ -63,6 +64,11 @@ const routes = [
component: AdminSettings,
meta: { requiresAuth: true, requiresAdmin: true, title: 'Settings' }
},
{
path: '/olap-constructor',
component: OLAPConstructor,
meta: { requiresAuth: true, title: 'OLAP Constructor' }
},
{
path: '/profile',
component: Profile,