Initial commit: svg backend
This commit is contained in:
0
backend/app/domain/__init__.py
Normal file
0
backend/app/domain/__init__.py
Normal file
7
backend/app/domain/roles.py
Normal file
7
backend/app/domain/roles.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UserRole(str, Enum):
|
||||
ADMIN = "admin"
|
||||
OPERATOR = "operator"
|
||||
VIEWER = "viewer"
|
||||
Reference in New Issue
Block a user