Tagged Questions
6
votes
4answers
1k views
Rails: Nested resources conflict, how to scope the index action depending on the called route
Imagine you have two defined routes:
map.resources articles
map.resources categories, :has_many => :articles
both accessible by helpers/paths
articles_path # /articles
category_articles_path(1) ...
3
votes
2answers
2k 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 :users, :has_many ...
1
vote
1answer
102 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. ...
1
vote
2answers
90 views
Rails nested rources and routes and how to set them up in route.rb
I think I have a handle on nested routes (great url helpers, and access and much more) and nested resources in forms with accepts_nested_attributes_for but what do I use in routes as I see both:
...
1
vote
1answer
606 views
Rails Namespace vs. Nested Resource
Let's say my app has two models, Foo and Bar.
Foo optionally belongs_to Bar.
Right now I can look at a single Foo, or search for a particular Foo, and the FoosController handles all that. My URLS ...
1
vote
3answers
4k 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 ...
0
votes
1answer
35 views
Rails routes generate Post request for New action in nested resources
I have the following nested resources:
resources :listings do
resources :offers do
member do
put "accept"
put "reject"
end
end
end
In my listings/show.html.haml, I ...
0
votes
1answer
25 views
How to set up partially nested resourceful routes?
On my Rails site, users post Listings of items they want to sell. Other users can browse these listings and click a link to contact the seller, which should create a MessageThread:
# MessageThread ...
0
votes
1answer
124 views
Rails form_for with nested resources: “No route matches”
I have the following nested resources in my routes.rb file. The inner resource specifies a controller name.
resources :batches, :except => [:new], :path => "sets" do
resources :tags, ...
0
votes
0answers
168 views
Ruby on Rails - Custom routing for review resource with index / show page and pagination
I'm stuck on a very tricky issue involving Rails 3 routes, and not good enough with routes to figure this one out on my own. I have a "Reviews" resource with only a "Show" and "Index" action. I am ...
0
votes
1answer
110 views
How to add aditional rest routes to a nested resource in rails
I have a widget that has many links. In the routes file:
map.resources :widgets, :has_many => [:links]
I want to add a "sort" action to links. What do I need to add to the routes file, so I can ...