Parent

Methods

Class/Module Index [+]

Quicksearch

ActionController::ParamsParser

Public Class Methods

new(app) click to toggle source
# File lib/action_controller/params_parser.rb, line 6
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/action_controller/params_parser.rb, line 10
def call(env)
  if params = parse_formatted_parameters(env)
    env["action_controller.request.request_parameters"] = params
  end

  @app.call(env)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.