Does anyone have a link to where they changed the routing behavior in
edge rails with in the last 3 weeks? Or can give a brief overview of the
changes?
Seems for example the below went from:
messages: GET /:user_id/messages/
{:action=>“index”, :controller=>“messages”}
To this:
user_messages: GET /:user_id/messages/
{:controller=>“messages”, :action=>“index”}
This happened between revision 6518 and revision 6654 in edge rails.
Route is defined as:
map.resources :users do |user|
user.resources :messages, :path_prefix => ‘:user_id’
end
Thanks
- John