Environment types for projects
| 61 | |
| 62 | |
| 63 | class Environment(enum.Enum): |
| 64 | """Environment types for projects""" |
| 65 | |
| 66 | # must match the database org_roles enum type (which is lowercase) |
| 67 | production = "production" |
| 68 | staging = "staging" |
| 69 | development = "development" |
| 70 | community = "community" |
| 71 | |
| 72 | |
| 73 | class AuthUserModel(BaseModel): |
no outgoing calls
no test coverage detected
searching dependent graphs…