method
call
v5.2.3 -
Show latest stable
- Class:
ActionDispatch::DebugLocks
call(env)public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/debug_locks.rb, line 31
def call(env)
req = ActionDispatch::Request.new env
if req.get?
path = req.path_info.chomp("/".freeze)
if path == @path
return render_details(req)
end
end
@app.call(env)
end