0
votes
3answers
46 views
Multiple Nested Routes, is there a better way to do this?
So In my rails app I have two resources (rentals, and reservations) which belong to a user. This is the code in my routes.rb to set up the nested routes.
map.resources :users, …
0
votes
2answers
148 views
How to use will_paginate with a nested resource in RAILS?
I'm new to RAILS, and I'm having major trouble getting will_paginate to work with a nested resource.
I have two models, Statement and Invoice. will_paginate is working on Statemen …
0
votes
2answers
120 views
Rails - link_to, routes and nested resources
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 : …
0
votes
2answers
43 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 …
0
votes
2answers
68 views
Rails nested routing to html id
given a blog style application:
#models
class Post < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :post
end
#routes.rb
map. …
0
votes
2answers
202 views
Rails nested resources
Here's the routes.rb:
map.resources :assignments, :shallow => true do |assignment|
assignment.resources :problems
end
How do i get the url to edit a problem (/assi …
