Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
4c8b7ae4
Commit
4c8b7ae4
authored
3 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-216
: added rest endpoint for create_cleanuptask_for_scheduling_unit_blueprint action
parent
ba654334
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!409
Resolve TMSS-261
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/backend/src/tmss/tmssapp/viewsets/specification.py
+13
-0
13 additions, 0 deletions
SAS/TMSS/backend/src/tmss/tmssapp/viewsets/specification.py
with
13 additions
and
0 deletions
SAS/TMSS/backend/src/tmss/tmssapp/viewsets/specification.py
+
13
−
0
View file @
4c8b7ae4
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment