From 0c2b46ca9020fd0a14c90075df74091ce9994756 Mon Sep 17 00:00:00 2001 From: Richard Blechinger <hello@pretzelhands.com> Date: Thu, 18 Nov 2021 13:16:27 +0100 Subject: [PATCH] Update documentation --- program/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/program/views.py b/program/views.py index f42b56fb..480307ce 100644 --- a/program/views.py +++ b/program/views.py @@ -509,6 +509,7 @@ class APITimeSlotViewSet(viewsets.ModelViewSet): /timeslots/{pk} eturns the given timeslot (GET) /timeslots/?start={start_date}&end={end_date} returns timeslots within the time range (GET) /shows/{show_pk}/timeslots returns timeslots of the show (GET, POST) + /shows/{show_pk}/timeslots?surrounding returns the 10 nearest timeslots for the current date (GET) /shows/{show_pk}/timeslots/{pk} returns a timeslots by its ID (GET, PUT, DELETE) /shows/{show_pk}/timeslots/?start={start_date}&end={end_date} returns timeslots of the show within the time range /shows/{show_pk}/schedules/{schedule_pk}/timeslots returns all timeslots of the schedule (GET, POST) -- GitLab