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

cluster_application_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b22a0b666ef56ec8fd2c0129439af85c8b7c60dd (plain)
1
2
3
4
5
6
class ClusterApplicationEntity < Grape::Entity
  expose :name
  expose :status_name, as: :status
  expose :status_reason
  expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
end