Tagged Questions
2
votes
2answers
47 views
Improperly routed Rails Destroy method on nested resource
I have a List object, with nested Tasks. I have created a page that displays individual tasks, and also a page that allows a user to edit individual tasks. I now want to add the ability to delete a ...
2
votes
3answers
163 views
Rails 3 - Best way to handle nested resource queries in your controllers?
If there's one thing I've learned about Rails 3 is if I'm having a hard time doing something, I'm probably doing it wrong. So I'm looking for help.
I have a few models which are related in a many to ...
2
votes
2answers
508 views
Rails 3.1 has_one nested resource: routing not generating “all” paths
I have a has_one relation:
# supplier.rb
has_one :presentation
...
# presentation.rb
belongs_to :supplier
...
and the folowing nested routes for them:
# routes.rb
resources :suppliers do
...
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
CanCan deeply nested resources
I have a routes.rb that looks like this:
resources :restaurants, :shallow => true do
resources :orders do
resources :foods
end
resources :categories do
resources :foods
end
end
...
0
votes
1answer
48 views
Ruby on Rails form_for causing path error
In my Ruby on Rails code, I have the following edit.html.erb file for tasks:
<%= render 'form' %>
I then have a _form template in the same directory with the following code:
<%= form_for ...
0
votes
1answer
31 views
Exposing a Specific Action of a Nested Route
Using this as an example contexted:
Post has_many comments
Comment belongs_to post
I have a route that looks like:
resources :posts do
resources :comments
end
How do i create a route that ...
0
votes
0answers
167 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
95 views
Trouble with multiple resources on creating message board
I'm working on a message board for my application and it has the typical three resources to make it all work: Forums, Topics and Posts. The routes are defined as so:
resources :forums do
...
0
votes
2answers
135 views
How to define a controller function that works for instances of any model
Implementing versioning for a Rails app I'd like to have a view that displays all versions of a model with some extra functionality like reverting etc.
I use the paper_trail gem for the versioning.
I ...