fix: Incorrectly named query param

This commit is contained in:
Peter Vacho 2025-01-04 18:44:17 +01:00
parent d741655292
commit 9aa6b5217d
Signed by: school
GPG key ID: 8CFC3837052871B4

View file

@ -32,7 +32,7 @@ interface EventsService {
@Query("start_to") startTo: OffsetDateTime? = null,
@Query("end_from") endFrom: OffsetDateTime? = null,
@Query("end_to") endTo: OffsetDateTime? = null,
@Query("inviteStatus") inviteStatus: String? = null, // "pending" / "accepted" / null (both)
@Query("invite_status") inviteStatus: String? = null, // "pending" / "accepted" / null (both)
): List<EventResponse>
@DELETE("events/{event_id}")