Closed SebCorbin closed 1 year ago
In Django, each validator implementing a password_changed() method gets called, it allows use cases like django_password_validators.password_history
password_changed()
Hence the password_changed() function from Django should be called in ChangePasswordForm
ChangePasswordForm
Sorry it is actually fired by user.set_password() (from the adapter), but my AUTH_PASSWORD_VALIDATORS = [] setting in dev was interfering
user.set_password()
AUTH_PASSWORD_VALIDATORS = []
In Django, each validator implementing a
password_changed()
method gets called, it allows use cases like django_password_validators.password_historyHence the
password_changed()
function from Django should be called inChangePasswordForm