summaryrefslogtreecommitdiff
path: root/app/serializers/pipeline_action_entity.rb
blob: 475b5a553160cd0506a02c4099948cf3f571e818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class PipelineActionEntity < Grape::Entity
  include RequestAwareEntity

  expose :name do |build|
    build.name.humanize
  end

  expose :url do |build|
    play_namespace_project_build_path(
      build.project.namespace,
      build.project,
      build)
  end
end