Skip to content

Commit

Permalink
Merge pull request #77 from studio-recoding/refactor/delete
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
uommou authored Jul 9, 2024
2 parents 679caf4 + fb6640c commit a002459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/database/chroma_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ async def update_db_data(schedule_data: UpdateScheduleDTO):
"member": schedule_data.member_id,
"category": schedule_data.category,
"category_id": schedule_data.schedule_id,
"category_color": schedule_data.category_color,
"location": schedule_data.location,
"person": schedule_data.person
}]
Expand Down
1 change: 1 addition & 0 deletions app/dto/db_dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class AddScheduleDTO(BaseModel):
member_id: int
category: str
category_id: int
category_color: str
location: str
person: str

Expand Down

0 comments on commit a002459

Please sign in to comment.