gitlab-org--gitlab-foss/app/serializers/pipeline_action_entity.rb
2016-11-10 17:50:55 +01:00

14 lines
269 B
Ruby

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