summaryrefslogtreecommitdiff
path: root/src/views/ProfileSettings/ProfileSettings.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/ProfileSettings/ProfileSettings.vue')
-rw-r--r--src/views/ProfileSettings/ProfileSettings.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/views/ProfileSettings/ProfileSettings.vue b/src/views/ProfileSettings/ProfileSettings.vue
index 820d386c..35fc800d 100644
--- a/src/views/ProfileSettings/ProfileSettings.vue
+++ b/src/views/ProfileSettings/ProfileSettings.vue
@@ -30,7 +30,7 @@
>
<b-form-text id="password-help-block">
{{
- $t('pageLocalUserManagement.modal.passwordMustBeBetween', {
+ $t('pageUserManagement.modal.passwordMustBeBetween', {
min: passwordRequirements.minLength,
max: passwordRequirements.maxLength,
})
@@ -160,7 +160,7 @@ export default {
return this.$store.getters['global/username'];
},
passwordRequirements() {
- return this.$store.getters['localUsers/accountPasswordRequirements'];
+ return this.$store.getters['userManagement/accountPasswordRequirements'];
},
timezone() {
return this.localOffset();
@@ -169,7 +169,7 @@ export default {
created() {
this.startLoader();
this.$store
- .dispatch('localUsers/getAccountSettings')
+ .dispatch('userManagement/getAccountSettings')
.finally(() => this.endLoader());
},
validations() {
@@ -196,7 +196,7 @@ export default {
};
this.$store
- .dispatch('localUsers/updateUser', userData)
+ .dispatch('userManagement/updateUser', userData)
.then((message) => {
(this.form.newPassword = ''), (this.form.confirmPassword = '');
this.$v.$reset();