From b440616c23b61166ae6d87839a70eec31bdca235 Mon Sep 17 00:00:00 2001 From: Sandeepa Singh Date: Mon, 26 Jul 2021 15:05:39 +0530 Subject: IA update: Update access and control section This is the fifth commit of the information architecture changes and has the following changes: - The icon for access and control has been updated - Access and control section has been updated to security and access section - Security settings page has been updated to policies page and moved to security and access section - Client sessions page has been updated to sessions page - Local user management page has been updated to user management page - SSL certificates page has been updated to certificates page Signed-off-by: Sandeepa Singh Change-Id: Ie93cee9002742ecf7d33615636f4f159f4395fc4 --- src/views/ProfileSettings/ProfileSettings.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/views/ProfileSettings') 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 @@ > {{ - $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(); -- cgit v1.2.3