2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Environment < Entities::EnvironmentBasic
|
2021-06-08 01:23:25 +05:30
|
|
|
include RequestAwareEntity
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
expose :tier
|
2020-03-13 15:44:24 +05:30
|
|
|
expose :project, using: Entities::BasicProjectDetails
|
|
|
|
expose :last_deployment, using: Entities::Deployment, if: { last_deployment: true }
|
|
|
|
expose :state
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|