summaryrefslogtreecommitdiff
path: root/app/serializers/cluster_serializer.rb
blob: 2e13c1501e78988d707a1215dd6296c20fe35ac6 (plain)
1
2
3
4
5
6
7
class ClusterSerializer < BaseSerializer
  entity ClusterEntity

  def represent_status(resource)
    represent(resource, { only: [:status, :status_reason, :applications] })
  end
end