summaryrefslogtreecommitdiff
path: root/app/serializers/cluster_entity.rb
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