Skip to content

Commit

Permalink
Merge branch 'main' into exp
Browse files Browse the repository at this point in the history
  • Loading branch information
smreosms13 authored Nov 19, 2024
2 parents 3b5d87b + c64620b commit 44421bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"ruff.lint.ignore": [
"B008",
"E712",
"UP007",
"UP017"
],
"editor.defaultFormatter": null
Expand Down
1 change: 1 addition & 0 deletions src/domain/schemas/book_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class DomainResAdminPostBook(BaseModel):
major: bool = Field(title="major", description="전공 책 여부", default=False)
language: str = Field(title="language", description="언어", default="KOREAN")
book_status: bool = Field(title="book_status", description="도서 상태", default=True)

donor_name: Optional[str] = Field(title="donor_name", description="기부자명", default=None)
created_at: datetime = Field(title="create_at", description="생성일시", example=datetime.now())
updated_at: datetime = Field(title="update_at", description="수정일시", example=datetime.now())
Expand Down

0 comments on commit 44421bd

Please sign in to comment.