File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2714,7 +2714,7 @@ class ProjectPipelineJobManager(ListMixin, RESTManager):
2714
2714
_list_filters = ('scope' ,)
2715
2715
2716
2716
2717
- class ProjectPipeline (RESTObject , RefreshMixin ):
2717
+ class ProjectPipeline (RESTObject , RefreshMixin , ObjectDeleteMixin ):
2718
2718
_managers = (('jobs' , 'ProjectPipelineJobManager' ), )
2719
2719
2720
2720
@cli .register_custom_action ('ProjectPipeline' )
@@ -2748,7 +2748,8 @@ def retry(self, **kwargs):
2748
2748
self .manager .gitlab .http_post (path )
2749
2749
2750
2750
2751
- class ProjectPipelineManager (RetrieveMixin , CreateMixin , RESTManager ):
2751
+ class ProjectPipelineManager (RetrieveMixin , CreateMixin , DeleteMixin ,
2752
+ RESTManager ):
2752
2753
_path = '/projects/%(project_id)s/pipelines'
2753
2754
_obj_cls = ProjectPipeline
2754
2755
_from_parent_attrs = {'project_id' : 'id' }
You can’t perform that action at this time.
0 commit comments