haldis/app/models/anonymous_user.py

22 lines
412 B
Python
Raw Normal View History

2019-09-09 23:06:11 +00:00
"AnonymouseUser for people who are not logged in the normal way"
# pylint: disable=R0201,C0111
class AnonymouseUser:
id = None
2019-09-07 22:41:50 +00:00
def is_active(self) -> bool:
return False
2019-09-07 22:41:50 +00:00
def is_authenticated(self) -> bool:
return False
2019-09-07 22:41:50 +00:00
def is_anonymous(self) -> bool:
return True
2019-09-07 22:41:50 +00:00
def is_admin(self) -> bool:
return False
2019-09-07 22:41:50 +00:00
def get_id(self) -> None:
return None