From cca561f2c39ef0015e314be25e9f7e80e313cff7 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 20 Apr 2022 12:06:44 +0300 Subject: [PATCH] fix ldap portal user creation --- application/Espo/Core/Authentication/Logins/LDAP.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/Espo/Core/Authentication/Logins/LDAP.php b/application/Espo/Core/Authentication/Logins/LDAP.php index 728a3450e9..e9c874a594 100644 --- a/application/Espo/Core/Authentication/Logins/LDAP.php +++ b/application/Espo/Core/Authentication/Logins/LDAP.php @@ -395,6 +395,7 @@ class LDAP implements Login ]); $this->linkMultipleSaver->process($user, 'teams', $saverParams); + $this->linkMultipleSaver->process($user, 'portals', $saverParams); $this->linkMultipleSaver->process($user, 'portalRoles', $saverParams); $this->emailAddressSaver->process($user, $saverParams); $this->phoneNumberSaver->process($user, $saverParams);