Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
task/182 datetime fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YehorI committed Nov 23, 2023
1 parent 320efe0 commit f4292e3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sapphire/projects/database/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,12 @@ async def get_participants(
user_id: uuid.UUID | Type[Empty] = Empty,
project_id: uuid.UUID | Type[Empty] = Empty,
status: ParticipantStatusEnum | Type[Empty] = Empty,
created_at_le: NaiveDatetime | Type[Empty] = Empty,
created_at_ge: NaiveDatetime | Type[Empty] = Empty,
joined_at_le: NaiveDatetime | Type[Empty] = Empty,
joined_at_ge: NaiveDatetime | Type[Empty] = Empty,
updated_at_le: NaiveDatetime | Type[Empty] = Empty,
updated_at_ge: NaiveDatetime | Type[Empty] = Empty,
created_at_le: datetime | Type[Empty] = Empty,
created_at_ge: datetime | Type[Empty] = Empty,
joined_at_le: datetime | Type[Empty] = Empty,
joined_at_ge: datetime | Type[Empty] = Empty,
updated_at_le: datetime | Type[Empty] = Empty,
updated_at_ge: datetime | Type[Empty] = Empty,
) -> list[Participant]:
filters = []

Expand Down

0 comments on commit f4292e3

Please sign in to comment.