Skip to content
Snippets Groups Projects

refactor schedule REST API

Merged Konrad Mohrfeldt requested to merge kmohrf/schedule-api-refactor into master
1 file
+ 2
4
Compare changes
  • Side-by-side
  • Inline
+ 2
4
@@ -487,8 +487,7 @@ class APIScheduleViewSet(
try:
resolution = Schedule.resolve_conflicts(request.data, pk, show_pk)
except ScheduleConflictError as exc:
# TODO: respond with status.HTTP_409_CONFLICT when the dashboard can handle it
return Response(exc.conflicts)
return Response(exc.conflicts, status.HTTP_409_CONFLICT)
if all(key in resolution for key in ["create", "update", "delete"]):
# this is a dry-run
@@ -535,8 +534,7 @@ class APIScheduleViewSet(
request.data, schedule.pk, schedule.show.pk
)
except ScheduleConflictError as exc:
# TODO: respond with status.HTTP_409_CONFLICT when the dashboard can handle it
return Response(exc.conflicts)
return Response(exc.conflicts, status.HTTP_409_CONFLICT)
return Response(resolution)
Loading