Skip to content

Commit

Permalink
feat(app): BoardRecord.archived is a required field
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Jun 27, 2024
1 parent 6e1626f commit 3f118ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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."""


Expand Down

0 comments on commit 3f118ab

Please sign in to comment.