debian-mirror-gitlab/app/controllers/projects/pipelines_settings_controller.rb
2021-01-03 14:25:43 +05:30

12 lines
300 B
Ruby

# 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