From b727656b05b18a5504b7c543fe242754b077e12c Mon Sep 17 00:00:00 2001 From: "gcp-cherry-pick-bot[bot]" <98988430+gcp-cherry-pick-bot[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 14:23:44 +0200 Subject: [PATCH] sources/ldap: Add enabled filter for ldap_password_validate signal (cherry-pick #10823) (#10825) sources/ldap: Add enabled filter for ldap_password_validate signal (#10823) Co-authored-by: Allen <63997543+aaw3@users.noreply.github.com> --- authentik/sources/ldap/signals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authentik/sources/ldap/signals.py b/authentik/sources/ldap/signals.py index 3213f9fc2ae9..79da5b911877 100644 --- a/authentik/sources/ldap/signals.py +++ b/authentik/sources/ldap/signals.py @@ -39,7 +39,7 @@ def sync_ldap_source_on_save(sender, instance: LDAPSource, **_): @receiver(password_validate) def ldap_password_validate(sender, password: str, plan_context: dict[str, Any], **__): """if there's an LDAP Source with enabled password sync, check the password""" - sources = LDAPSource.objects.filter(sync_users_password=True) + sources = LDAPSource.objects.filter(sync_users_password=True, enabled=True) if not sources.exists(): return source = sources.first() @@ -56,7 +56,7 @@ def ldap_password_validate(sender, password: str, plan_context: dict[str, Any], @receiver(password_changed) def ldap_sync_password(sender, user: User, password: str, **_): """Connect to ldap and update password.""" - sources = LDAPSource.objects.filter(sync_users_password=True) + sources = LDAPSource.objects.filter(sync_users_password=True, enabled=True) if not sources.exists(): return source = sources.first()