Sha256: 535d2d8a92069df2236ceab6b07f0d9ef0f874ea9f899b4da662a4143310d7b3
Contents?: true
Size: 1.17 KB
Versions: 15
Compression:
Stored size: 1.17 KB
Contents
require 'flipper/api/action' require 'flipper/api/v1/decorators/feature' module Flipper module Api module V1 module Actions class PercentageOfActorsGate < Api::Action include FeatureNameFromRoute route %r{\A/features/(?<feature_name>.*)/percentage_of_actors/?\Z} def post if percentage < 0 || percentage > 100 json_error_response(:percentage_invalid) end feature = flipper[feature_name] feature.enable_percentage_of_actors(percentage) decorated_feature = Decorators::Feature.new(feature) json_response(decorated_feature.as_json, 200) end def delete feature = flipper[feature_name] feature.disable_percentage_of_actors decorated_feature = Decorators::Feature.new(feature) json_response(decorated_feature.as_json, 200) end private def percentage @percentage ||= begin Integer(params['percentage']) rescue ArgumentError, TypeError -1 end end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems