summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-30 19:48:23 +0300
committerDerick Montague <derick.montague@ibm.com>2020-05-06 18:09:47 +0300
commit5c977976d9450b50faeb33ba5bd1b5deaabcc3b5 (patch)
tree6851745f9f0a988fd88d3e4001454d1b62262d53 /src/store
parent9a9092dc021b10c26dfaba5c39ea02c4fa563f14 (diff)
downloadwebui-vue-5c977976d9450b50faeb33ba5bd1b5deaabcc3b5.tar.xz
Add loading bar to Server power operations page
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I823279c6865fa1ecff2f0443d735477e03fbf417
Diffstat (limited to 'src/store')
-rw-r--r--src/store/modules/Control/BootSettingsStore.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/store/modules/Control/BootSettingsStore.js b/src/store/modules/Control/BootSettingsStore.js
index 8da586aa..655c79e5 100644
--- a/src/store/modules/Control/BootSettingsStore.js
+++ b/src/store/modules/Control/BootSettingsStore.js
@@ -30,8 +30,8 @@ const BootSettingsStore = {
setTpmPolicy: (state, tpmEnabled) => (state.tpmEnabled = tpmEnabled)
},
actions: {
- getBootSettings({ commit }) {
- api
+ async getBootSettings({ commit }) {
+ return await api
.get('/redfish/v1/Systems/system/')
.then(({ data: { Boot } }) => {
commit(
@@ -70,9 +70,9 @@ const BootSettingsStore = {
return error;
});
},
- getTpmPolicy({ commit }) {
+ async getTpmPolicy({ commit }) {
// TODO: switch to Redfish when available
- api
+ return await api
.get('/xyz/openbmc_project/control/host0/TPMEnable')
.then(({ data: { data: { TPMEnable } } }) =>
commit('setTpmPolicy', TPMEnable)