Tagged Questions
1
vote
1answer
100 views
Nesting Resources 3 Levels Deep
I have an idea of what is going wrong, but am having trouble fixing it.
To explain my situation again, I have 3 elements : Jobs, Questions and Answers . All of the relationships are set up below. ...
0
votes
2answers
362 views
No Route error when passing parameters through link_to
Error:
No route matches {:action=>"new", :controller=>"comments", :parent_id=>1}
routes.rb:
MyApp::Application.routes.draw do
resources :posts do
resources :comments
end
...
0
votes
2answers
337 views
With nested routes does the parent controller or the child controller process the request for the “new” action?
If you have a nested resource defined like this:
map.resources :magazines, :has_many => :ads.
for these models:
class Magazine < ActiveRecord::Base
has_many :ads
end
class Ad < ...