Class: Ci::DestroyPipelineService
- Inherits:
-
BaseService
- Object
- BaseService
- Ci::DestroyPipelineService
- Defined in:
- app/services/ci/destroy_pipeline_service.rb
Instance Attribute Summary
Attributes inherited from BaseService
#current_user, #params, #project
Instance Method Summary collapse
Methods inherited from BaseService
Methods included from BaseServiceUtility
#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level
Methods included from Gitlab::Allowable
Constructor Details
This class inherits a constructor from BaseService
Instance Method Details
#execute(pipeline) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'app/services/ci/destroy_pipeline_service.rb', line 5 def execute(pipeline) raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_pipeline, pipeline) Ci::ExpirePipelineCacheService.new.execute(pipeline, delete: true) pipeline.destroy! ServiceResponse.success(message: 'Pipeline not found') rescue ActiveRecord::RecordNotFound ServiceResponse.error(message: 'Pipeline not found') end |