Flowdock
method

match_head_routes

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: Router
match_head_routes(routes, req) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/journey/router.rb, line 123
        def match_head_routes(routes, req)
          routes.delete_if { |route| route.verb == // }
          head_routes = match_routes(routes, req)

          if head_routes.empty?
            begin
              req.request_method = "GET"
              match_routes(routes, req)
            ensure
              req.request_method = "HEAD"
            end
          else
            head_routes
          end
        end
Register or log in to add new notes.