summaryrefslogtreecommitdiff
path: root/app/serializers/runner_entity.rb
blob: 6df11aa96dad0c675cc9fb05ade75cb25bb7360a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class RunnerEntity < Grape::Entity
  include RequestAwareEntity

  expose :id, :description

  expose :edit_path,
    if: -> (*) { can?(request.current_user, :admin_build, project) && runner.specific? } do |runner|
    edit_namespace_project_runner_path(*project, runner)
  end

  private

  alias_method :runner, :object

  def project
    request.project
  end
end