Skip to content

Commit 57402d2

Browse files
committed
fix: add the end_date back in
1 parent c007bcd commit 57402d2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/aind_metadata_viz/contributions/models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ class AuthorContribution(BaseModel):
8383
default=None,
8484
description="Optional date when the author started working on the project",
8585
)
86+
end_date: Optional[date] = Field(
87+
default=None,
88+
description="Optional date when the author stopped working on the project",
89+
)
8690
credit_levels: List[RoleContribution] = Field(default_factory=list)
8791
section_levels: List[SectionContribution] = Field(default_factory=list)
8892
from_asset: bool = Field(

0 commit comments

Comments
 (0)