summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
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)