debian-mirror-gitlab/app/controllers/groups/settings/ci_cd_controller.rb

26 lines
668 B
Ruby
Raw Normal View History

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
define_secret_variables
end
private
def define_secret_variables
@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