debian-mirror-gitlab/app/controllers/projects/pipelines_settings_controller.rb
2018-05-09 12:01:36 +05:30

8 lines
213 B
Ruby

class Projects::PipelinesSettingsController < Projects::ApplicationController
before_action :authorize_admin_pipeline!
def show
redirect_to project_settings_ci_cd_path(@project, params: params)
end
end