mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Revert "Allow suspended users to login"
This reverts commit 91c51c50df
.
This commit is contained in:
parent
bcb22f1382
commit
47772f1464
1 changed files with 1 additions and 2 deletions
|
@ -335,7 +335,6 @@ class User(
|
||||||
self.state == self.STATE_ACTIVE
|
self.state == self.STATE_ACTIVE
|
||||||
or self.state == self.STATE_NOT_YET_ACTIVE
|
or self.state == self.STATE_NOT_YET_ACTIVE
|
||||||
or self.state == self.STATE_EMAIL_NOT_YET_CONFIRMED
|
or self.state == self.STATE_EMAIL_NOT_YET_CONFIRMED
|
||||||
or self.state == self.STATE_SUSPENDED
|
|
||||||
or (
|
or (
|
||||||
allow_archived
|
allow_archived
|
||||||
and self.state in (self.STATE_ARCHIVE, self.STATE_FULL_ARCHIVE)
|
and self.state in (self.STATE_ARCHIVE, self.STATE_FULL_ARCHIVE)
|
||||||
|
@ -345,7 +344,7 @@ class User(
|
||||||
def set_active(self):
|
def set_active(self):
|
||||||
"""Enable this user if he subscribed successfully one time before
|
"""Enable this user if he subscribed successfully one time before
|
||||||
Reenable it if it was archived
|
Reenable it if it was archived
|
||||||
Do nothing if suspended, disabled or waiting for email confirmation"""
|
Do nothing if disabled or waiting for email confirmation"""
|
||||||
if self.state == self.STATE_NOT_YET_ACTIVE:
|
if self.state == self.STATE_NOT_YET_ACTIVE:
|
||||||
if self.facture_set.filter(valid=True).filter(
|
if self.facture_set.filter(valid=True).filter(
|
||||||
Q(vente__type_cotisation="All") | Q(vente__type_cotisation="Adhesion")
|
Q(vente__type_cotisation="All") | Q(vente__type_cotisation="Adhesion")
|
||||||
|
|
Loading…
Reference in a new issue