Sha256: c95b734bc30bdfc73fbbbe013c0c644a82eb2ca4287732ce8da49201b2d78930
Contents?: true
Size: 779 Bytes
Versions: 19
Compression:
Stored size: 779 Bytes
Contents
require 'flipper/ui/action' require 'flipper/ui/decorators/feature' module Flipper module UI module Actions class PercentageOfTimeGate < UI::Action include FeatureNameFromRoute route %r{\A/features/(?<feature_name>.*)/percentage_of_time/?\Z} def post feature = flipper[feature_name] @feature = Decorators::Feature.new(feature) begin feature.enable_percentage_of_time params['value'] rescue ArgumentError => exception error = Rack::Utils.escape("Invalid percentage of time value: #{exception.message}") redirect_to("/features/#{@feature.key}?error=#{error}") end redirect_to "/features/#{@feature.key}" end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems