How can I get the "match"-string again from my request? Given I request a site with /users/1, I can get the current route object in my controller with:
Rails.application.routes.router.recognize(request) do |route, matches, param|
...
end
How can I get my original "route / match" string again, in this example
"users/:id"