gitlab-org--gitlab-foss/app/serializers/pipeline_artifact_entity.rb

15 lines
276 B
Ruby
Raw Normal View History

class PipelineArtifactEntity < Grape::Entity
include RequestAwareEntity
expose :name do |build|
build.name
end
expose :url do |build|
download_namespace_project_build_artifacts_path(
2016-11-10 11:50:55 -05:00
build.project.namespace,
build.project,
build)
end
end