feat(app): BoardRecord.archived is a required field

This commit is contained in:
psychedelicious 2024-06-28 09:23:32 +10:00
parent 132289de55
commit 89fcab34d0

View File

@ -22,7 +22,7 @@ class BoardRecord(BaseModelExcludeNull):
"""The updated timestamp of the image."""
cover_image_name: Optional[str] = Field(default=None, description="The name of the cover image of the board.")
"""The name of the cover image of the board."""
archived: bool = Field(default=False, description="Whether or not the board is archived.")
archived: bool = Field(description="Whether or not the board is archived.")
"""Whether or not the board is archived."""