Skip to content

Commit

Permalink
sources/ldap: Add enabled filter for ldap_password_validate signal (c…
Browse files Browse the repository at this point in the history
…herry-pick #10823) (#10825)

sources/ldap: Add enabled filter for ldap_password_validate signal (#10823)

Co-authored-by: Allen <[email protected]>
  • Loading branch information
gcp-cherry-pick-bot[bot] and aaw3 authored Aug 8, 2024
1 parent 8f09c2c commit b727656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions authentik/sources/ldap/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit b727656

Please sign in to comment.