gitlab-org--gitlab-foss/app/controllers/projects/pipelines_settings_controll...

10 lines
244 B
Ruby

# 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