Class: Flipper::UI::Actions::Gate

Inherits:
Flipper::UI::Action show all
Defined in:
lib/flipper/ui/actions/gate.rb

Instance Attribute Summary

Attributes inherited from Flipper::UI::Action

#flipper, #request

Instance Method Summary collapse

Methods inherited from Flipper::UI::Action

#breadcrumb, #csrf_input_tag, #halt, #header, #initialize, #json_response, public_path, #public_path, #redirect_to, regex, #request_method_name, route, #run, run, #run_other_action, #script_name, #status, #view, #view_response, #view_with_layout, #view_without_layout, views_path, #views_path

Constructor Details

This class inherits a constructor from Flipper::UI::Action

Instance Method Details

#postObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/flipper/ui/actions/gate.rb', line 10

def post
  feature_name, gate_name = request.path.split('/').pop(2).map{ |value| Rack::Utils.unescape value }
  update_gate_method_name = "update_#{gate_name}"

  feature = flipper[feature_name.to_sym]
  @feature = Decorators::Feature.new(feature)

  if respond_to?(update_gate_method_name, true)
    send(update_gate_method_name, feature)
  else
    update_gate_method_undefined(gate_name)
  end

  redirect_to "/features/#{@feature.key}"
end