summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-06-08 17:36:59 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-06-18 00:15:19 +0300
commit09e8b5d478f212c094b7bea66c570fe0e673756e (patch)
treeffce5be1056608e82fe256e73dfb42c5e29911ab /src/store/index.js
parentb89a53c8d4a740c959b12938445917c3df5d3d4b (diff)
downloadwebui-vue-09e8b5d478f212c094b7bea66c570fe0e673756e.tar.xz
Add Chassis table to hardware status page
Add each chassis at /redfish/v1/Chassis endpoint to a table with an expansion row to view property details. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I8d4c64fecac3857e0d4ece9fad81d9035e236c92
Diffstat (limited to 'src/store/index.js')
-rw-r--r--src/store/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/store/index.js b/src/store/index.js
index c4c0948f..0f921759 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -18,6 +18,7 @@ import SystemStore from './modules/Health/SystemStore';
import PowerSupplyStore from './modules/Health/PowerSupplyStore';
import MemoryStore from './modules/Health/MemoryStore';
import FanStore from './modules/Health/FanStore';
+import ChassisStore from './modules/Health/ChassisStore';
import WebSocketPlugin from './plugins/WebSocketPlugin';
@@ -44,7 +45,8 @@ export default new Vuex.Store({
serverLed: ServerLedStore,
system: SystemStore,
memory: MemoryStore,
- fan: FanStore
+ fan: FanStore,
+ chassis: ChassisStore
},
plugins: [WebSocketPlugin]
});