We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4470054 commit 87057f6Copy full SHA for 87057f6
packages/models-library/src/models_library/projects_state.py
@@ -57,10 +57,10 @@ class ProjectStatus(str, Enum):
57
58
class ProjectLocked(BaseModel):
59
value: bool = Field(..., description="True if the project is locked")
60
+ status: ProjectStatus = Field(..., description="The status of the project")
61
owner: Owner | None = Field(
62
default=None, description="If locked, the user that owns the lock"
63
)
- status: ProjectStatus = Field(..., description="The status of the project")
64
65
class Config:
66
extra = Extra.forbid
0 commit comments