2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Feature < Grape::Entity
|
|
|
|
expose :name
|
|
|
|
expose :state
|
|
|
|
expose :gates, using: Entities::FeatureGate do |model|
|
|
|
|
model.gates.map do |gate|
|
|
|
|
value = model.gate_values[gate.key]
|
|
|
|
|
|
|
|
# By default all gate values are populated. Only show relevant ones.
|
2020-10-24 23:57:45 +05:30
|
|
|
if (value.is_a?(Integer) && value == 0) || (value.is_a?(Set) && value.empty?)
|
2020-03-13 15:44:24 +05:30
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
{ key: gate.key, value: value }
|
|
|
|
end.compact
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|