From 42b4d8a59ece61daca17675eb54375547ea1f740 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Wed, 13 Jul 2022 21:00:42 +0300 Subject: [PATCH] Web: Common: check password settings --- packages/asc-web-common/store/AuthStore.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/asc-web-common/store/AuthStore.js b/packages/asc-web-common/store/AuthStore.js index 7ed6702ee1..334449edf4 100644 --- a/packages/asc-web-common/store/AuthStore.js +++ b/packages/asc-web-common/store/AuthStore.js @@ -53,6 +53,8 @@ class AuthStore { if (this.isAuthenticated && !skipModules) { this.userStore.user && requests.push(this.moduleStore.init()); + !this.settingsStore.passwordSettings && + requests.push(this.settingsStore.getPortalPasswordSettings()); } return Promise.all(requests);