gitlab-org--gitlab-foss/lib/api/entities/feature_gate.rb

11 lines
154 B
Ruby

# frozen_string_literal: true
module API
module Entities
class FeatureGate < Grape::Entity
expose :key
expose :value
end
end
end