summaryrefslogtreecommitdiff
path: root/src/store/modules/Configuration
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-05-01 22:26:00 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-05-05 20:28:16 +0300
commit598bf7e96704f54400ec1730255168dd4d274218 (patch)
tree772eed2aee074f479a06c85c860deabcfc20908d /src/store/modules/Configuration
parenta9ac43b9b25172cf0bfe800acdfc985024cad597 (diff)
downloadwebui-vue-598bf7e96704f54400ec1730255168dd4d274218.tar.xz
Add loading bar to Overview page
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I47ef77dda6b348c854e875aa458acfa44e287c49
Diffstat (limited to 'src/store/modules/Configuration')
-rw-r--r--src/store/modules/Configuration/FirmwareStore.js8
-rw-r--r--src/store/modules/Configuration/NetworkSettingsStore.js4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/store/modules/Configuration/FirmwareStore.js b/src/store/modules/Configuration/FirmwareStore.js
index b76748f3..cae74ebc 100644
--- a/src/store/modules/Configuration/FirmwareStore.js
+++ b/src/store/modules/Configuration/FirmwareStore.js
@@ -17,8 +17,8 @@ const FirmwareStore = {
(state.hostFirmwareVersion = hostFirmwareVersion)
},
actions: {
- getBmcFirmware({ commit }) {
- api
+ async getBmcFirmware({ commit }) {
+ return await api
.get('/redfish/v1/Managers/bmc')
.then(response => {
const bmcFirmwareVersion = response.data.FirmwareVersion;
@@ -28,8 +28,8 @@ const FirmwareStore = {
console.log(error);
});
},
- getHostFirmware({ commit }) {
- api
+ async getHostFirmware({ commit }) {
+ return await api
.get('/redfish/v1/Systems/system')
.then(response => {
const hostFirmwareVersion = response.data.BiosVersion;
diff --git a/src/store/modules/Configuration/NetworkSettingsStore.js b/src/store/modules/Configuration/NetworkSettingsStore.js
index 3b1f2320..f6912c87 100644
--- a/src/store/modules/Configuration/NetworkSettingsStore.js
+++ b/src/store/modules/Configuration/NetworkSettingsStore.js
@@ -13,8 +13,8 @@ const NetworkSettingsStore = {
(state.ethernetData = ethernetData)
},
actions: {
- getEthernetData({ commit }) {
- api
+ async getEthernetData({ commit }) {
+ return await api
.get('/redfish/v1/Managers/bmc/EthernetInterfaces')
.then(response =>
response.data.Members.map(