14 lines
468 B
Ruby
14 lines
468 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class Environment < Entities::EnvironmentBasic
|
|
include RequestAwareEntity
|
|
|
|
expose :tier, documentation: { type: 'string', example: 'development' }
|
|
expose :project, using: Entities::BasicProjectDetails
|
|
expose :last_deployment, using: Entities::Deployment, if: { last_deployment: true }
|
|
expose :state, documentation: { type: 'string', example: 'available' }
|
|
end
|
|
end
|
|
end
|