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: c59f68bbc4966298a39929600bd3fef7370f21bb (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ClusterEntity < Grape::Entity
  include RequestAwareEntity

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