diff --git a/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts b/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts index 42f763402..e173583d1 100644 --- a/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +++ b/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts @@ -43,6 +43,11 @@ const sidebarItem: menu[] = [ icon: 'mdi-puzzle', to: '/extension' }, + { + title: 'core.navigation.commands', + icon: 'mdi-console-line', + to: '/commands' + }, { title: 'core.navigation.knowledgeBase', icon: 'mdi-book-open-variant', diff --git a/dashboard/src/router/MainRoutes.ts b/dashboard/src/router/MainRoutes.ts index 276d37444..e21b383c6 100644 --- a/dashboard/src/router/MainRoutes.ts +++ b/dashboard/src/router/MainRoutes.ts @@ -16,6 +16,11 @@ const MainRoutes = { path: '/extension', component: () => import('@/views/ExtensionPage.vue') }, + { + name: 'Commands', + path: '/commands', + component: () => import('@/views/CommandPage.vue') + }, { name: 'ExtensionMarketplace', path: '/extension-marketplace', diff --git a/dashboard/src/views/CommandPage.vue b/dashboard/src/views/CommandPage.vue new file mode 100644 index 000000000..6b4b92f86 --- /dev/null +++ b/dashboard/src/views/CommandPage.vue @@ -0,0 +1,539 @@ + + + + +