summaryrefslogtreecommitdiff
path: root/app/controllers/projects/pipelines_settings_controller.rb
blob: 192e6d38f36c01bed2dc0b203786ab2ead512f5b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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