summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/ci/pipeline_destroy.rb
blob: bb24d416583736ac054bdf4890dfe88b8f64411f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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