summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/ci/pipeline_destroy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/ci/pipeline_destroy.rb')
-rw-r--r--app/graphql/mutations/ci/pipeline_destroy.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/graphql/mutations/ci/pipeline_destroy.rb b/app/graphql/mutations/ci/pipeline_destroy.rb
deleted file mode 100644
index bb24d416583..00000000000
--- a/app/graphql/mutations/ci/pipeline_destroy.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-module Mutations
- module Ci
- class PipelineDestroy < Base
- graphql_name 'PipelineDestroy'
-
- authorize :destroy_pipeline
-
- def resolve(id:)
- pipeline = authorized_find!(id: id)
- project = pipeline.project
-
- result = ::Ci::DestroyPipelineService.new(project, current_user).execute(pipeline)
- {
- success: result.success?,
- errors: result.errors
- }
- end
- end
- end
-end