create default avatar, admin, and deleted user on first run
This commit is contained in:
8
app/constants.py
Normal file
8
app/constants.py
Normal file
@ -0,0 +1,8 @@
|
||||
from enum import Enum
|
||||
|
||||
class PermissionLevel(Enum):
|
||||
GUEST = 0
|
||||
USER = 1
|
||||
MODERATOR = 2
|
||||
SYSTEM = 3
|
||||
ADMIN = 4
|
Reference in New Issue
Block a user