2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module Groups
|
|
|
|
module Settings
|
|
|
|
class CiCdController < Groups::ApplicationController
|
2018-03-27 19:54:05 +05:30
|
|
|
skip_cross_project_access_check :show
|
2017-09-10 17:25:29 +05:30
|
|
|
before_action :authorize_admin_pipeline!
|
|
|
|
|
|
|
|
def show
|
2018-12-13 13:39:08 +05:30
|
|
|
define_ci_variables
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def reset_registration_token
|
|
|
|
@group.reset_runners_token!
|
|
|
|
|
|
|
|
flash[:notice] = 'New runners registration token has been generated!'
|
|
|
|
redirect_to group_settings_ci_cd_path
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
private
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def define_ci_variables
|
2017-09-10 17:25:29 +05:30
|
|
|
@variable = Ci::GroupVariable.new(group: group)
|
|
|
|
.present(current_user: current_user)
|
|
|
|
@variables = group.variables.order_key_asc
|
|
|
|
.map { |variable| variable.present(current_user: current_user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_pipeline!
|
|
|
|
return render_404 unless can?(current_user, :admin_pipeline, group)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|