summaryrefslogtreecommitdiff
path: root/src/store/modules
diff options
context:
space:
mode:
authorSandeepa Singh <sandeepa.singh@ibm.com>2021-07-19 15:34:18 +0300
committerDerick Montague <derick.montague@ibm.com>2021-08-10 22:20:42 +0300
commitf67f769f2304bca64d2b9758e22c21203960eef9 (patch)
tree167d6ac96a90b098887f9cf1dc4e96a895e2754c /src/store/modules
parent68cbbe9014cbdcf7229a878f564d38f6d6199f25 (diff)
downloadwebui-vue-f67f769f2304bca64d2b9758e22c21203960eef9.tar.xz
IA update: Update configuration to settings
This is the fourth update to information architecture changes and has the following changes: - The configuration section is updated to settings - The date and time settings page is updated to date and time - The network settings page is updated to network - The power restore policy page in operations section is moved to settings section Signed-off-by: Sandeepa Singh <sandeepa.singh@ibm.com> Change-Id: I6f5ab25f5227530be430bd39a4d9629b3bf09d8b
Diffstat (limited to 'src/store/modules')
-rw-r--r--src/store/modules/Settings/DateTimeStore.js (renamed from src/store/modules/Configuration/DateTimeSettingsStore.js)10
-rw-r--r--src/store/modules/Settings/NetworkStore.js (renamed from src/store/modules/Configuration/NetworkSettingsStore.js)10
-rw-r--r--src/store/modules/Settings/PowerPolicyStore.js (renamed from src/store/modules/Operations/PowerPolicyStore.js)0
-rw-r--r--src/store/modules/Settings/SecuritySettingsStore.js (renamed from src/store/modules/Configuration/SecuritySettingsStore.js)0
4 files changed, 7 insertions, 13 deletions
diff --git a/src/store/modules/Configuration/DateTimeSettingsStore.js b/src/store/modules/Settings/DateTimeStore.js
index f431a740..51b722a8 100644
--- a/src/store/modules/Configuration/DateTimeSettingsStore.js
+++ b/src/store/modules/Settings/DateTimeStore.js
@@ -30,7 +30,7 @@ const DateTimeStore = {
console.log(error);
});
},
- async updateDateTimeSettings({ state }, dateTimeForm) {
+ async updateDateTime({ state }, dateTimeForm) {
const ntpData = {
NTP: {
ProtocolEnabled: dateTimeForm.ntpProtocolEnabled,
@@ -68,15 +68,11 @@ const DateTimeStore = {
}
})
.then(() => {
- return i18n.t(
- 'pageDateTimeSettings.toast.successSaveDateTimeSettings'
- );
+ return i18n.t('pageDateTime.toast.successSaveDateTime');
})
.catch((error) => {
console.log(error);
- throw new Error(
- i18n.t('pageDateTimeSettings.toast.errorSaveDateTimeSettings')
- );
+ throw new Error(i18n.t('pageDateTime.toast.errorSaveDateTime'));
});
},
},
diff --git a/src/store/modules/Configuration/NetworkSettingsStore.js b/src/store/modules/Settings/NetworkStore.js
index 159c5bf6..4040658a 100644
--- a/src/store/modules/Configuration/NetworkSettingsStore.js
+++ b/src/store/modules/Settings/NetworkStore.js
@@ -2,7 +2,7 @@ import api from '@/store/api';
import i18n from '@/i18n';
import { find, remove } from 'lodash';
-const NetworkSettingsStore = {
+const NetworkStore = {
namespaced: true,
state: {
defaultGateway: '',
@@ -100,16 +100,14 @@ const NetworkSettingsStore = {
)
.then(() => dispatch('getEthernetData'))
.then(() => {
- return i18n.t('pageNetworkSettings.toast.successSaveNetworkSettings');
+ return i18n.t('pageNetwork.toast.successSaveNetworkSettings');
})
.catch((error) => {
console.log(error);
- throw new Error(
- i18n.t('pageNetworkSettings.toast.errorSaveNetworkSettings')
- );
+ throw new Error(i18n.t('pageNetwork.toast.errorSaveNetworkSettings'));
});
},
},
};
-export default NetworkSettingsStore;
+export default NetworkStore;
diff --git a/src/store/modules/Operations/PowerPolicyStore.js b/src/store/modules/Settings/PowerPolicyStore.js
index 4e76cdfe..4e76cdfe 100644
--- a/src/store/modules/Operations/PowerPolicyStore.js
+++ b/src/store/modules/Settings/PowerPolicyStore.js
diff --git a/src/store/modules/Configuration/SecuritySettingsStore.js b/src/store/modules/Settings/SecuritySettingsStore.js
index 5a885425..5a885425 100644
--- a/src/store/modules/Configuration/SecuritySettingsStore.js
+++ b/src/store/modules/Settings/SecuritySettingsStore.js