vote up 1 vote down star

If I want to provide an alias for a controller, I can use map.resources :rants, :controller => 'blog_posts' yoursite.com/rants points to the blog_posts controller fine.

How do I give an alias to a nested resource, for example yoursite.com/users/5/rants ?

flag

1 Answer

vote up 1 vote down check

You may want to try:

 map.resources :rants, :controller => 'blog_posts'
 map.resources :users do |users|
   users.resources :rants, :controller => 'blog_posts'
 end

This will give you the yoursite.com/users/5/rants/ url that you are looking for and it will generate the handy methods (for example: users_rants_path(@user))

Hope this helps.

link|flag
This was driving me crazy. Thank you, thank you, thank you, thank you! – Kirschstein Apr 16 at 18:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.