2019-05-01 18:29:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-05-01 19:16:26 -04:00
|
|
|
class JobArtifactReportEntity < Grape::Entity
|
2019-05-01 18:29:15 -04:00
|
|
|
include RequestAwareEntity
|
|
|
|
|
|
|
|
expose :file_type
|
|
|
|
expose :file_format
|
|
|
|
expose :size
|
|
|
|
|
|
|
|
expose :download_path do |artifact|
|
2019-05-20 18:56:19 -04:00
|
|
|
download_project_job_artifacts_path(artifact.job.project, artifact.job, file_type: artifact.file_format)
|
2019-05-01 18:29:15 -04:00
|
|
|
end
|
|
|
|
end
|