Skip to content
Snippets Groups Projects
Commit 4c8b7ae4 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-216: added rest endpoint for create_cleanuptask_for_scheduling_unit_blueprint action

parent ba654334
No related branches found
No related tags found
1 merge request!409Resolve TMSS-261
......@@ -810,6 +810,19 @@ class SchedulingUnitBlueprintViewSet(LOFARViewSet):
status=status.HTTP_200_OK)
@swagger_auto_schema(responses={201: "This SchedulingUnitBlueprint, with references to the created Cleanup TaskBlueprints.",
403: 'forbidden'},
operation_description="Create a cleanup task for this scheduling unit.")
@action(methods=['get'], detail=True, url_name="create_cleanuptask", name="Create a cleanup task for this scheduling unit")
def create_cleanuptask_for_scheduling_unit_blueprint(self, request, pk=None):
scheduling_unit_blueprint = get_object_or_404(models.SchedulingUnitBlueprint, pk=pk)
scheduling_unit_blueprint = create_cleanuptask_for_scheduling_unit_blueprint(scheduling_unit_blueprint)
# return a response with the new serialized scheduling_unit_blueprint (with references to the created task_blueprint and subtask)
return Response(serializers.SchedulingUnitBlueprintSerializer(scheduling_unit_blueprint, context={'request':request}).data,
status=status.HTTP_201_CREATED)
class SchedulingUnitBlueprintExtendedViewSet(SchedulingUnitBlueprintViewSet):
serializer_class = serializers.SchedulingUnitBlueprintExtendedSerializer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment