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

cluster_serializer.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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