summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorSandeepa Singh <sandeepa.singh@ibm.com>2021-07-14 13:32:22 +0300
committerDerick Montague <derick.montague@ibm.com>2021-08-10 22:20:42 +0300
commit68cbbe9014cbdcf7229a878f564d38f6d6199f25 (patch)
treecd7138959f405cb44b5d62000da9d364ed238b91 /src/components
parent7affc529b7fba41193c4d48764707e9961cdd22d (diff)
downloadwebui-vue-68cbbe9014cbdcf7229a878f564d38f6d6199f25.tar.xz
IA update: Update control section to operations
This is the third update to the information architecture changes and has the following changes: - The control section has been updated to operations - The server led page has been removed - The firmware page is moved to operations section Signed-off-by: Sandeepa Singh <sandeepa.singh@ibm.com> Change-Id: I2e23da447890d7bee51892e1f782d5f2db6dded4
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AppHeader/AppHeader.vue2
-rw-r--r--src/components/AppNavigation/AppNavigationMixin.js35
2 files changed, 16 insertions, 21 deletions
diff --git a/src/components/AppHeader/AppHeader.vue b/src/components/AppHeader/AppHeader.vue
index df6acbf7..26f4a683 100644
--- a/src/components/AppHeader/AppHeader.vue
+++ b/src/components/AppHeader/AppHeader.vue
@@ -56,7 +56,7 @@
{{ $t('appHeader.health') }}
</b-nav-item>
<b-nav-item
- to="/control/server-power-operations"
+ to="/operations/server-power-operations"
data-test-id="appHeader-container-power"
>
<status-icon :status="serverStatusIcon" />
diff --git a/src/components/AppNavigation/AppNavigationMixin.js b/src/components/AppNavigation/AppNavigationMixin.js
index 10ca5f83..935bd7e7 100644
--- a/src/components/AppNavigation/AppNavigationMixin.js
+++ b/src/components/AppNavigation/AppNavigationMixin.js
@@ -60,54 +60,54 @@ const AppNavigationMixin = {
],
},
{
- id: 'control',
- label: this.$t('appNavigation.control'),
+ id: 'operations',
+ label: this.$t('appNavigation.operations'),
icon: 'iconControl',
children: [
{
id: 'factory-reset',
label: this.$t('appNavigation.factoryReset'),
- route: '/control/factory-reset',
+ route: '/operations/factory-reset',
},
{
id: 'kvm',
label: this.$t('appNavigation.kvm'),
- route: '/control/kvm',
+ route: '/operations/kvm',
+ },
+ {
+ id: 'firmware',
+ label: this.$t('appNavigation.firmware'),
+ route: '/operations/firmware',
},
{
id: 'manage-power-usage',
label: this.$t('appNavigation.managePowerUsage'),
- route: '/control/manage-power-usage',
+ route: '/operations/manage-power-usage',
},
{
id: 'power-restore-policy',
label: this.$t('appNavigation.powerRestorePolicy'),
- route: '/control/power-restore-policy',
+ route: '/operations/power-restore-policy',
},
{
id: 'reboot-bmc',
label: this.$t('appNavigation.rebootBmc'),
- route: '/control/reboot-bmc',
+ route: '/operations/reboot-bmc',
},
{
id: 'serial-over-lan',
label: this.$t('appNavigation.serialOverLan'),
- route: '/control/serial-over-lan',
- },
- {
- id: 'server-led',
- label: this.$t('appNavigation.serverLed'),
- route: '/control/server-led',
+ route: '/operations/serial-over-lan',
},
{
id: 'server-power-operations',
label: this.$t('appNavigation.serverPowerOperations'),
- route: '/control/server-power-operations',
+ route: '/operations/server-power-operations',
},
{
id: 'virtual-media',
label: this.$t('appNavigation.virtualMedia'),
- route: '/control/virtual-media',
+ route: '/operations/virtual-media',
},
],
},
@@ -122,11 +122,6 @@ const AppNavigationMixin = {
route: '/configuration/date-time-settings',
},
{
- id: 'firmware',
- label: this.$t('appNavigation.firmware'),
- route: '/configuration/firmware',
- },
- {
id: 'network-settings',
label: this.$t('appNavigation.networkSettings'),
route: '/configuration/network-settings',