sources/ldap: Add enabled filter for ldap_password_validate signal (#10823) Co-authored-by: Allen <63997543+aaw3@users.noreply.github.com>
This commit is contained in:
![98988430+gcp-cherry-pick-bot[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
GitHub

parent
8f09c2c21c
commit
b727656b05
@ -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()
|
||||
|
Reference in New Issue
Block a user