From 3fd25920d459b1ae5f5e0f69e5dfcb89f3dd5b29 Mon Sep 17 00:00:00 2001 From: Oliver Faust <90081405+lidonius1122@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:32:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20fix(ldap):=20`LDAP=5FLO?= =?UTF-8?q?GIN=5FUSES=5FUSERNAME`=20config=20(#3472)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/server/services/Config/ldap.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/server/services/Config/ldap.js b/api/server/services/Config/ldap.js index 1a4cfbed0d7..e45d21d0cd5 100644 --- a/api/server/services/Config/ldap.js +++ b/api/server/services/Config/ldap.js @@ -15,6 +15,8 @@ const getLdapConfig = () => { if (ldapLoginUsesUsername) { ldap.username = true; } + + return ldap; }; module.exports = {