2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-20 08:33:13 -04:00
|
|
|
class Projects::PipelinesSettingsController < Projects::ApplicationController
|
|
|
|
before_action :authorize_admin_pipeline!
|
|
|
|
|
|
|
|
def show
|
2019-01-02 15:06:55 -05:00
|
|
|
redirect_to project_settings_ci_cd_path(@project, params: params.to_unsafe_h)
|
2016-07-20 08:33:13 -04:00
|
|
|
end
|
|
|
|
end
|