class ActionController::Metal
def self.call(env)
Makes the controller a Rack endpoint that runs the action in the given
def self.call(env) req = ActionDispatch::Request.new env action(req.path_parameters[:action]).call(env) end
def self.call(env) req = ActionDispatch::Request.new env action(req.path_parameters[:action]).call(env) end