summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-05-28 23:28:29 +0300
committerDerick Montague <derick.montague@ibm.com>2020-06-17 23:36:55 +0300
commit56ee769fd5a3df93eb275859a712700a7ba54944 (patch)
treedf91c4974e2c0e42eb6966b7c10728a7918c4a95 /src/store/index.js
parent8cb0d253809582e52bf2c388ac1f95a0713dc3f9 (diff)
downloadwebui-vue-56ee769fd5a3df93eb275859a712700a7ba54944.tar.xz
Add Hardware status page and system table
Adds ability to see system information in table format with a row expansion details view. Modified tables styles to add table borders. Created global mixin for table data formatting: - Show '--' for undefined or empty string values - Map Redfish health status options to status-icon values Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I5b45c37997647f5a265c1e84eb53f0b51699ee20
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 ad55030a..ea1e9b3b 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -15,6 +15,7 @@ import NetworkSettingStore from './modules/Configuration/NetworkSettingsStore';
import EventLogStore from './modules/Health/EventLogStore';
import SensorsStore from './modules/Health/SensorsStore';
import ServerLedStore from './modules/Control/ServerLedStore';
+import SystemStore from './modules/Health/SystemStore';
import WebSocketPlugin from './plugins/WebSocketPlugin';
@@ -38,7 +39,8 @@ export default new Vuex.Store({
eventLog: EventLogStore,
sensors: SensorsStore,
sslCertificates: SslCertificatesStore,
- serverLed: ServerLedStore
+ serverLed: ServerLedStore,
+ system: SystemStore
},
plugins: [WebSocketPlugin]
});