mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
11 lines
207 B
Python
11 lines
207 B
Python
from flask_login import AnonymousUserMixin
|
|
|
|
|
|
class AnonymousUser(AnonymousUserMixin):
|
|
def can(self, permissions):
|
|
return False
|
|
|
|
@property
|
|
def is_administrator(self):
|
|
return False
|