23 lines
565 B
Ruby
23 lines
565 B
Ruby
|
# 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.
|
||
|
if (value.is_a?(Integer) && value.zero?) || (value.is_a?(Set) && value.empty?)
|
||
|
next
|
||
|
end
|
||
|
|
||
|
{ key: gate.key, value: value }
|
||
|
end.compact
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|