Use user.reactivate when a user confirms their email address
This is cleaner and easier to maintain.
This commit is contained in:
parent
ac8b060d58
commit
50a42dc0a2
2 changed files with 5 additions and 4 deletions
|
@ -390,7 +390,10 @@ class User(OrderedCollectionPageMixin, AbstractUser):
|
|||
self.is_active = True
|
||||
self.deactivation_reason = None
|
||||
self.allow_reactivation = False
|
||||
super().save(broadcast=False)
|
||||
super().save(
|
||||
broadcast=False,
|
||||
update_fields=["deactivation_reason", "is_active", "allow_reactivation"],
|
||||
)
|
||||
|
||||
@property
|
||||
def local_path(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue