debian-mirror-gitlab/app/serializers/runner_entity.rb
2018-11-18 11:00:15 +05:30

20 lines
391 B
Ruby

# frozen_string_literal: true
class RunnerEntity < Grape::Entity
include RequestAwareEntity
expose :id, :description
expose :edit_path,
if: -> (*) { can?(request.current_user, :admin_build, project) && runner.project_type? } do |runner|
edit_project_runner_path(project, runner)
end
private
alias_method :runner, :object
def project
request.project
end
end