summaryrefslogtreecommitdiff
path: root/src/env
diff options
context:
space:
mode:
Diffstat (limited to 'src/env')
-rw-r--r--src/env/components/AppNavigation/sila.js11
-rw-r--r--src/env/router/sila.js9
2 files changed, 20 insertions, 0 deletions
diff --git a/src/env/components/AppNavigation/sila.js b/src/env/components/AppNavigation/sila.js
index 3319368b..68ff77e1 100644
--- a/src/env/components/AppNavigation/sila.js
+++ b/src/env/components/AppNavigation/sila.js
@@ -156,6 +156,17 @@ const AppNavigationMixin = {
],
},
{
+ id: 'power-sup',
+ label: this.$t('appNavigation.powerSup'),
+ children: [
+ {
+ id: 'power/static',
+ label: this.$t('appNavigation.staticInfo'),
+ route: '/power/static',
+ },
+ ],
+ },
+ {
id: 'settings',
label: this.$t('appNavigation.settings'),
children: [
diff --git a/src/env/router/sila.js b/src/env/router/sila.js
index dbf4369f..a5495638 100644
--- a/src/env/router/sila.js
+++ b/src/env/router/sila.js
@@ -34,6 +34,7 @@ import ProcessorsDynamic from '@/views/_sila/Processors/Dynamic';
import MemoryDynamic from '@/views/_sila/Memory/Dynamic';
import FansDynamic from '@/views/_sila/Fans/Dynamic';
import MotherboardDynamic from '@/views/_sila/Motherboard/Dynamic';
+import PowerStatic from '@/views/_sila/Power/Static';
import i18n from '@/i18n';
const routes = [
@@ -197,6 +198,14 @@ const routes = [
},
},
{
+ path: 'power/static',
+ name: 'power-static',
+ component: PowerStatic,
+ meta: {
+ title: i18n.t('appPageTitle.powerSup'),
+ },
+ },
+ {
path: '/security-and-access/sessions',
name: 'sessions',
component: Sessions,