13 lines
239 B
Ruby
13 lines
239 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
module Clusters
|
||
|
class Agent < Grape::Entity
|
||
|
expose :id
|
||
|
expose :project, with: Entities::ProjectIdentity, as: :config_project
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|