2019-03-02 22:35:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module ContainerRegistry
|
2019-10-12 21:52:04 +05:30
|
|
|
class Tag < Grape::Entity
|
2019-03-02 22:35:43 +05:30
|
|
|
expose :name
|
|
|
|
expose :path
|
|
|
|
expose :location
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
class Repository < Grape::Entity
|
|
|
|
expose :id
|
2019-03-02 22:35:43 +05:30
|
|
|
expose :name
|
|
|
|
expose :path
|
2019-10-12 21:52:04 +05:30
|
|
|
expose :project_id
|
2019-03-02 22:35:43 +05:30
|
|
|
expose :location
|
2019-10-12 21:52:04 +05:30
|
|
|
expose :created_at
|
2020-06-23 00:09:42 +05:30
|
|
|
expose :tags_count, if: -> (_, options) { options[:tags_count] }
|
2019-10-12 21:52:04 +05:30
|
|
|
expose :tags, using: Tag, if: -> (_, options) { options[:tags] }
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
class TagDetails < Tag
|
|
|
|
expose :revision
|
|
|
|
expose :short_revision
|
|
|
|
expose :digest
|
|
|
|
expose :created_at
|
|
|
|
expose :total_size
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|