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

TMSS-207: typos

parent 9d4141de
No related branches found
No related tags found
1 merge request!162Intermediate merge of TMSS-207 to master
......@@ -166,10 +166,10 @@ class SchedulingUnitDraftViewSet(LOFARViewSet):
queryset = models.SchedulingUnitDraft.objects.all()
serializer_class = serializers.SchedulingUnitDraftSerializer
@swagger_auto_schema(responses={201: 'Created task blueprint, see Location in Response header',
@swagger_auto_schema(responses={201: 'Created schduling unit blueprint, see Location in Response header',
403: 'forbidden'},
operation_description="Carve this draft task specification in stone, and make an (uneditable) blueprint out of it.")
@action(methods=['get'], detail=True, url_name="create_task_blueprint")
operation_description="Carve this scheduling unit draft in stone, and make an (uneditable) blueprint out of it.")
@action(methods=['get'], detail=True, url_name="create_scheduling_unit_blueprint")
def create_scheduling_unit_blueprint(self, request, pk=None):
scheduling_unit_draft = get_object_or_404(models.SchedulingUnitDraft, pk=pk)
scheduling_unit_blueprint = create_scheduling_unit_blueprint_from_scheduling_unit_draft(scheduling_unit_draft)
......
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