ROR 2.0.2
I have:
map.resources :blogs do |blog|
blog.resources :posts
end
in my routes.rb
I am calling the route as:
link_to “(manage)”, posts_path(@blog)
I get the following error:
Undefined method `posts_path’ for #ActionView::Base:0xb74caa38
I am sure it is something stupid, but I can’t figure out what.
Thanks