summaryrefslogtreecommitdiff
path: root/lib/api/entities/job_request/image.rb
blob: 47f4542d2d567c0917dc7208e4ba2d20849d9720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module API
  module Entities
    module JobRequest
      class Image < Grape::Entity
        expose :name, :entrypoint
        expose :ports, using: Entities::JobRequest::Port
      end
    end
  end
end