I have the following routes setup:
map.resources :designs, :has_many => :notes
map.resources :designs do |designs|
designs.resources :notes, :has_many => :comments
designs.resources :notes do |notes|
notes.resources :comments
end
end
And this view:
Is giving me the error: undefined method `notes_path’ for, it used to
work (we were on 1.2.2 but I’ve also tried 1.2.6) but it doesn’t any
more (I’ve tried RC1 - 1.99.0 & RC2 1.99.1).
I’ve not seen anything in the RC documentation that gives me a clue as
to why this isn’t working anymore and I’m a bit stuck, so any advice
would be really helpful.