2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class PackageFile < Grape::Entity
|
|
|
|
expose :id, :package_id, :created_at
|
|
|
|
expose :file_name, :size
|
2021-06-08 01:23:25 +05:30
|
|
|
expose :file_md5, :file_sha1, :file_sha256
|
2021-01-29 00:20:46 +05:30
|
|
|
expose :pipelines, if: ->(package_file) { package_file.pipelines.present? }, using: Package::Pipeline
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|