summaryrefslogtreecommitdiff
path: root/src/env
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 17:51:16 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 17:51:16 +0300
commitfad0a75ada3de9902be996a63395804c7732c727 (patch)
tree4d9b7055300c85f1e7007bb9e661fdcadd85e74f /src/env
parentb6c09f37d0da22dab29db173f5856600416ef7a0 (diff)
downloadwebui-vue-fad0a75ada3de9902be996a63395804c7732c727.tar.xz
Remove bms
Issue: SILABMC-191
Diffstat (limited to 'src/env')
-rw-r--r--src/env/components/AppNavigation/sila.js17
-rw-r--r--src/env/router/sila.js9
2 files changed, 5 insertions, 21 deletions
diff --git a/src/env/components/AppNavigation/sila.js b/src/env/components/AppNavigation/sila.js
index a089cf55..0390c42b 100644
--- a/src/env/components/AppNavigation/sila.js
+++ b/src/env/components/AppNavigation/sila.js
@@ -27,6 +27,11 @@ const AppNavigationMixin = {
icon: 'iconOverview',
children: [
{
+ id: 'overview',
+ label: this.$t('appNavigation.overview'),
+ route: '/',
+ },
+ {
id: 'inventory',
label: this.$t('appNavigation.inventory'),
route: '/hardware-inventory',
@@ -44,18 +49,6 @@ const AppNavigationMixin = {
],
},
{
- id: 'bmc',
- label: this.$t('appNavigation.bmc'),
- icon: 'iconLogs',
- children: [
- {
- id: 'bmc-configuration',
- label: this.$t('appNavigation.bmcTitle'),
- route: '/bmc/configuration',
- },
- ],
- },
- {
id: 'logs',
label: this.$t('appNavigation.logs'),
icon: 'iconLogs',
diff --git a/src/env/router/sila.js b/src/env/router/sila.js
index 8dc79156..a622a436 100644
--- a/src/env/router/sila.js
+++ b/src/env/router/sila.js
@@ -29,7 +29,6 @@ import KeyClear from '@/views/_sila/Operations/KeyClear';
import Certificates from '@/views/_sila/SecurityAndAccess/Certificates';
import VirtualMedia from '@/views/_sila/Operations/VirtualMedia';
import Power from '@/views/_sila/ResourceManagement/Power';
-import Configuration from '@/views/_sila/BMC/Configuration';
import i18n from '@/i18n';
const routes = [
@@ -129,14 +128,6 @@ const routes = [
},
},
{
- path: '/bmc/configuration',
- name: 'bmc-configuration',
- component: Configuration,
- meta: {
- title: i18n.t('appNavigation.bmc'),
- },
- },
- {
path: '/logs/event-logs',
name: 'event-logs',
component: EventLogs,