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

Merge branch 'fix_279' into 'dev'

The reset_passw function should not set as not yet active users that have...

See merge request re2o/re2o!554
This commit is contained in:
klafyvel 2020-08-28 22:15:47 +02:00
commit e2a0db3408
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