Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e5b0997878368d8a579eba978d84f56547bff1e (plain)
1
2
3
4
5
6
7
class ClusterEntity < Grape::Entity
  include RequestAwareEntity

  expose :status_name, as: :status
  expose :status_reason
  expose :applications, using: ClusterApplicationEntity
end