From e24b17d2f599a34895acb9eccff3144af55484c5 Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Mon, 8 Jun 2020 11:03:11 -0700 Subject: Add DIMM slot table to hardware status page Add items at /redfish/v1/Systems/system/Memory endpoint to DIMM slot table. The table is sortable and has a row expansion to view details. The code is currently missing most properties needed to match the design. This table will need to be revisited when all properties are available. Signed-off-by: Yoshie Muranaka Change-Id: I07cacf3403fe84431cb9fe0e4315069fc7baf27d --- src/store/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/store/index.js') diff --git a/src/store/index.js b/src/store/index.js index 8479a27b..b4e030ba 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -16,6 +16,7 @@ import SensorsStore from './modules/Health/SensorsStore'; import ServerLedStore from './modules/Control/ServerLedStore'; import SystemStore from './modules/Health/SystemStore'; import PowerSupplyStore from './modules/Health/PowerSupplyStore'; +import MemoryStore from './modules/Health/MemoryStore'; import WebSocketPlugin from './plugins/WebSocketPlugin'; @@ -40,7 +41,8 @@ export default new Vuex.Store({ sensors: SensorsStore, sslCertificates: SslCertificatesStore, serverLed: ServerLedStore, - system: SystemStore + system: SystemStore, + memory: MemoryStore }, plugins: [WebSocketPlugin] }); -- cgit v1.2.3