vote up 0 vote down star

As my understanding on nested resources, on edge Rails, should not

link_to 'User posts', @user.posts

point to

/users/:id/posts

?

The routes.rb file contains

map.resources :users, :has_many => :posts

If this is not the default behavior, can it be accomplished doing something else?

flag

2 Answers

vote up 0 vote down check

Along the same lines as Rishav:

link_to "User Posts", [@user, :posts]
link|flag
vote up 2 vote down

This should work:

 
 link_to "User Posts", user_posts_path(@user)

for more details visit:

http://guides.rubyonrails.org/routing.html

link|flag

Your Answer

Get an OpenID
or

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