0
votes
1answer
23 views
Named Routes in Rails: how to capture a custom url and then send params to update
I want to have this exact named route that I can put in views:
<%= link_to publish_review_path(@review) %>
... I would like it to map to a path like this:
"/reviews/3456/publish"
... and …
0
votes
2answers
80 views
quick rails named routes question
In my view I specify a named route like this:
show.html.erb ->
seo_path(:id => "45")
Now in my routes I define like so:
routes.rb ->
map.seo "/pages/:id/:permalink", :controller => …
0
votes
0answers
54 views
How do you insert a named route into the RouteCollection object?
I exclusively use named routes (as a best practice) when using ASP.NET Routing. The RouteCollection object has an Add function that allows you to easily add a named route to the collection. However, …
