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

17 lines
735 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
class ClusterApplicationEntity < Grape::Entity
expose :name
expose :status_name, as: :status
expose :status_reason
2019-03-02 22:35:43 +05:30
expose :version
2018-03-27 19:54:05 +05:30
expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
2019-07-07 11:18:12 +05:30
expose :external_hostname, if: -> (e, _) { e.respond_to?(:external_hostname) }
2018-11-08 19:23:39 +05:30
expose :hostname, if: -> (e, _) { e.respond_to?(:hostname) }
2019-02-15 15:39:39 +05:30
expose :email, if: -> (e, _) { e.respond_to?(:email) }
2019-12-26 22:10:19 +05:30
expose :stack, if: -> (e, _) { e.respond_to?(:stack) }
2020-03-13 15:44:24 +05:30
expose :modsecurity_enabled, if: -> (e, _) { e.respond_to?(:modsecurity_enabled) }
2019-03-02 22:35:43 +05:30
expose :update_available?, as: :update_available, if: -> (e, _) { e.respond_to?(:update_available?) }
2019-07-31 22:56:46 +05:30
expose :can_uninstall?, as: :can_uninstall
2018-03-17 18:26:18 +05:30
end