Testys commited on
Commit
99f4045
·
1 Parent(s): 92f5a3c

Simple fixes

Browse files
Files changed (1) hide show
  1. 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 = "STUDENT"
19
- STAFF = "STAFF"
20
- ADMIN = "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"