Update ldap.py

This commit is contained in:
BastelBaus 2025-03-24 20:10:53 +01:00 committed by GitHub
parent f40c4d6e9b
commit bcbf0918a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,8 +65,8 @@ class Auth(auth.BaseAuth):
except ImportError as e:
raise RuntimeError("LDAP authentication requires the ldap3 module") from e
self._ldap_authentik_timestamp_hack = configuration.get("auth", "ldap_authentik_timestamp_hack")
if self._ldap_authentik_timestamp_hack:
self._ldap_ignore_attribute_create_modify_timestamp = configuration.get("auth", "ldap_ignore_attribute_create_modify_timestamp")
if self._ldap_ignore_attribute_create_modify_timestamp:
self.ldap3.utils.config._ATTRIBUTES_EXCLUDED_FROM_CHECK.extend(['createTimestamp','modifyTimestamp'])
logger.info("auth.ldap_authentik_timestamp_hack applied")