Spaces:
Runtime error
Runtime error
Simple fixes
Browse files- src/models.py +3 -3
src/models.py
CHANGED
|
@@ -15,9 +15,9 @@ if JWT_SECRET_KEY == "your-default-secret-key-for-dev-only-CHANGE-ME":
|
|
| 15 |
|
| 16 |
# Enums - Values are now ALL CAPS to match the PostgreSQL ENUM type labels, based on testing.
|
| 17 |
class UserRole(str, enum.Enum):
|
| 18 |
-
STUDENT = "
|
| 19 |
-
STAFF = "
|
| 20 |
-
ADMIN = "
|
| 21 |
|
| 22 |
class ClearanceStatusEnum(str, enum.Enum):
|
| 23 |
COMPLETED = "COMPLETED"
|
|
|
|
| 15 |
|
| 16 |
# Enums - Values are now ALL CAPS to match the PostgreSQL ENUM type labels, based on testing.
|
| 17 |
class UserRole(str, enum.Enum):
|
| 18 |
+
STUDENT = "student"
|
| 19 |
+
STAFF = "staff"
|
| 20 |
+
ADMIN = "admin"
|
| 21 |
|
| 22 |
class ClearanceStatusEnum(str, enum.Enum):
|
| 23 |
COMPLETED = "COMPLETED"
|