summaryrefslogtreecommitdiff
path: root/app/controllers/projects/pipelines/stages_controller.rb
blob: 0447bbf29e763ed2f58692a36439ee54f822a532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Projects
  module Pipelines
    class StagesController < Projects::Pipelines::ApplicationController
      before_action :authorize_update_pipeline!

      urgency :low, [
        :play_manual
      ]

      def play_manual
        ::Ci::PlayManualStageService
          .new(@project, current_user, pipeline: pipeline)
          .execute(stage)

        respond_to do |format|
          format.json do
            render json: StageSerializer
              .new(project: @project, current_user: @current_user)
              .represent(stage)
          end
        end
      end

      private

      def stage
        @pipeline_stage ||= pipeline.find_stage_by_name!(params[:stage_name])
      end
    end
  end
end