summaryrefslogtreecommitdiff
path: root/src/env
diff options
context:
space:
mode:
Diffstat (limited to 'src/env')
-rw-r--r--src/env/components/AppNavigation/sila.js16
-rw-r--r--src/env/router/sila.js18
2 files changed, 34 insertions, 0 deletions
diff --git a/src/env/components/AppNavigation/sila.js b/src/env/components/AppNavigation/sila.js
index e3a8a380..4f47342e 100644
--- a/src/env/components/AppNavigation/sila.js
+++ b/src/env/components/AppNavigation/sila.js
@@ -69,6 +69,11 @@ const AppNavigationMixin = {
label: this.$t('appNavigation.staticInfo'),
route: '/fans/static',
},
+ {
+ id: 'fans/dynamic',
+ label: this.$t('appNavigation.dynamicInformation'),
+ route: '/fans/dynamic',
+ },
],
},
{
@@ -118,6 +123,17 @@ const AppNavigationMixin = {
],
},
{
+ id: 'memory',
+ label: this.$t('appNavigation.memory'),
+ children: [
+ {
+ id: 'memory/dynamic',
+ label: this.$t('appNavigation.dynamicInformation'),
+ route: '/memory/dynamic',
+ },
+ ],
+ },
+ {
id: 'processors',
label: this.$t('appNavigation.processors'),
children: [
diff --git a/src/env/router/sila.js b/src/env/router/sila.js
index f297b369..4a5d5b71 100644
--- a/src/env/router/sila.js
+++ b/src/env/router/sila.js
@@ -31,6 +31,8 @@ import VirtualMedia from '@/views/_sila/Operations/VirtualMedia';
import Power from '@/views/_sila/ResourceManagement/Power';
import FansStatic from '@/views/_sila/Fans/Static';
import ProcessorsDynamic from '@/views/_sila/Processors/Dynamic';
+import MemoryDynamic from '@/views/_sila/Memory/Dynamic';
+import FansDynamic from '@/views/_sila/Fans/Dynamic';
import i18n from '@/i18n';
const routes = [
@@ -162,6 +164,14 @@ const routes = [
},
},
{
+ path: 'memory/dynamic',
+ name: 'memory-dynamic',
+ component: MemoryDynamic,
+ meta: {
+ title: i18n.t('appPageTitle.memory'),
+ },
+ },
+ {
path: 'processors/dynamic',
name: 'processors-dynamic',
component: ProcessorsDynamic,
@@ -170,6 +180,14 @@ const routes = [
},
},
{
+ path: 'fans/dynamic',
+ name: 'fans-dynamic',
+ component: FansDynamic,
+ meta: {
+ title: i18n.t('appPageTitle.fans'),
+ },
+ },
+ {
path: '/security-and-access/sessions',
name: 'sessions',
component: Sessions,