Get match-string from route-object

176 Views Asked by At

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"
0

There are 0 best solutions below