debian-mirror-gitlab/lib/api/entities/feature.rb
2020-10-24 23:57:45 +05:30

23 lines
564 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 == 0) || (value.is_a?(Set) && value.empty?)
next
end
{ key: gate.key, value: value }
end.compact
end
end
end
end