debian-mirror-gitlab/app/controllers/projects/pipelines_settings_controller.rb

8 lines
213 B
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
class Projects::PipelinesSettingsController < Projects::ApplicationController
before_action :authorize_admin_pipeline!
def show
2017-09-10 17:25:29 +05:30
redirect_to project_settings_ci_cd_path(@project, params: params)
2016-08-24 12:49:21 +05:30
end
end