1
vote
Rails friendly url routing with open id
You could handle that second route with something like this (replace the action name with something real).
map.connect 'identity/:id', :controller => "identity",
…
0
votes
Validate no routing overlap when creating new resources in Ruby on Rails
You can use a route that would not otherwise exist. This way it won't make any difference if someone chooses a reserved word for a title or not.
map.product_view '/product_view/:per …
0
votes
New Action Not Working
Are you intentionally trying to get the id from session[:user_id] instead of params[:id]? Is this supposed to be displaying a public profile?
…
