debian-mirror-gitlab/app/serializers/cluster_application_entity.rb

7 lines
194 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
class ClusterApplicationEntity < Grape::Entity
expose :name
expose :status_name, as: :status
expose :status_reason
2018-03-27 19:54:05 +05:30
expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
2018-03-17 18:26:18 +05:30
end