Skip to content

Commit

Permalink
Ensure delete_on and archived_on fields exposed in build schema object
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Jan 16, 2025
1 parent 7b96ebd commit 9261a0d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions conda-store-server/conda_store_server/_internal/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ class Build(BaseModel):
scheduled_on: datetime.datetime
started_on: Optional[datetime.datetime] = None
ended_on: Optional[datetime.datetime] = None
deleted_on: Optional[datetime.datetime] = None
archived_on: Optional[datetime.datetime] = None
build_artifacts: Optional[List[BuildArtifact]] = None
model_config = ConfigDict(from_attributes=True, use_enum_values=True)

Expand Down

0 comments on commit 9261a0d

Please sign in to comment.