mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-16 00:13:12 +00:00
Remove return True in is_adherent and is_connected
This commit is contained in:
parent
b80e1252a2
commit
40b18084c8
1 changed files with 0 additions and 2 deletions
|
@ -425,7 +425,6 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
|
|||
def is_adherent(self):
|
||||
""" Renvoie True si l'user est adhérent : si
|
||||
self.end_adhesion()>now"""
|
||||
return True
|
||||
end = self.end_adhesion()
|
||||
if not end:
|
||||
return False
|
||||
|
@ -437,7 +436,6 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
|
|||
def is_connected(self):
|
||||
""" Renvoie True si l'user est adhérent : si
|
||||
self.end_adhesion()>now et end_connexion>now"""
|
||||
return True
|
||||
end = self.end_connexion()
|
||||
if not end:
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue