From 28f5dba00b45010fa6d28c4ff0b9566eccaf4150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Thu, 22 Oct 2020 14:56:27 +0200 Subject: [PATCH] auth: remove duplicated password reset log for LDAP backend --- metasrht/auth/ldap.py | 1 - 1 file changed, 1 deletion(-) diff --git a/metasrht/auth/ldap.py b/metasrht/auth/ldap.py index a421801..f4381a8 100644 --- a/metasrht/auth/ldap.py +++ b/metasrht/auth/ldap.py @@ -169,5 +169,4 @@ class LDAPAuthMethod(AuthMethod): db.session.commit() def set_user_password(self, user: User, password: str) -> bool: - audit_log("password reset", user=user) self._get_ldap_conn().passwd_s(self.get_dn_for(user.username), None, password) -- 2.30.2