8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

The reset_passw function should not set as not yet active users that have already been flaged active

This commit is contained in:
Gabriel Detraz 2020-08-28 12:39:29 +02:00 committed by chirac
parent d51599c59a
commit 982200dc49
2 changed files with 1 additions and 3 deletions

View file

@ -269,8 +269,6 @@ class PassForm(FormRevMixin, FieldPermissionFormMixin, forms.ModelForm):
"""
user = super(PassForm, self).save(commit=False)
user.set_password(self.cleaned_data.get("passwd1"))
user.state = User.STATE_NOT_YET_ACTIVE
user.set_active()
user.save()

View file

@ -2190,7 +2190,7 @@ def user_post_save(**kwargs):
if is_created:
user.notif_inscription(user.request)
user.set_active()
user.state_sync()
user.ldap_sync(
base=True, access_refresh=True, mac_refresh=False, group_refresh=True