Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipelines_settings_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e08a889520738ad70b67c4b445e7d649a16862a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Projects::PipelinesSettingsController < Projects::ApplicationController
  before_action :authorize_admin_pipeline!

  feature_category :continuous_integration

  def show
    redirect_to project_settings_ci_cd_path(@project, params: params.to_unsafe_h)
  end
end