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

TMSS-207: typo

parent 39a8720b
No related branches found
No related tags found
1 merge request!162Intermediate merge of TMSS-207 to master
...@@ -238,7 +238,7 @@ class TaskDraftViewSet(LOFARViewSet): ...@@ -238,7 +238,7 @@ class TaskDraftViewSet(LOFARViewSet):
@swagger_auto_schema(responses={201: 'The created task blueprint, see Location in Response header', @swagger_auto_schema(responses={201: 'The created task blueprint, see Location in Response header',
403: 'forbidden'}, 403: 'forbidden'},
operation_description="Carve this draft task specification in stone, and make an (uneditable) blueprint out of it.") 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", name="Create TaskBlueprint) @action(methods=['get'], detail=True, url_name="create_task_blueprint", name="Create TaskBlueprint")
def create_task_blueprint(self, request, pk=None): def create_task_blueprint(self, request, pk=None):
task_draft = get_object_or_404(models.TaskDraft, pk=pk) task_draft = get_object_or_404(models.TaskDraft, pk=pk)
task_blueprint = create_task_blueprint_from_task_draft(task_draft) task_blueprint = create_task_blueprint_from_task_draft(task_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