2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
class Projects::PipelinesSettingsController < Projects::ApplicationController
|
|
|
|
before_action :authorize_admin_pipeline!
|
|
|
|
|
|
|
|
def show
|
2019-03-02 22:35:43 +05:30
|
|
|
redirect_to project_settings_ci_cd_path(@project, params: params.to_unsafe_h)
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
end
|