Tagged Questions
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
...
2
votes
1answer
94 views
Rails 3 routing: Avoiding Deep Nesting
Today I realised I'd gotten a little carried away with nested resources:
resources :organisations do
resources :studies do
resources :settings
end
end
The Rails guidelines (and my own ...
2
votes
1answer
152 views
Ruby / Rails - AJAX pagination of nested resources - How do I determine the parent resource?
My model has Posts, Users, and Comments. Users can leave Comments on/about Posts.
Every Comment belongs to a User and a Post.
Therefore, the Comment model has a user_id field and a post_id field.
...
1
vote
2answers
88 views
Combining shallow and non-shallow routes on a single Rails resource
Let's say I have a Magazine model and Ad model, such that Magazine :has_many => :ads. I have setup my nested resource routing as follows:
resources :magazines do
resources :ads, :shallow => ...
1
vote
1answer
677 views
Rails 3 - Nested Resources Routing - One to One relationship
Having some trouble with some nested resources routing. What I'm trying to do is link to a user's profile page for editing purposes. In my view it is written as:
<%= link_to "Edit Profile", ...
1
vote
1answer
356 views
Nested routes with Subdomain-fu
I have some standard nested routes in my app, and I want to implement subdomains using the subdomain-fu gem. So I'm currently doing this:
example.com/stores/name_of_store/products/name_of_product
...
0
votes
0answers
24 views
Default parent values for nested resource urls in rails3
Suppose I have a pretty standard has_many relationship:
class User < ActiveRecord::Base
has_many :projects
end
class Project < ActiveRecord::Base
belongs_to :user
end
And I want to nest ...
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
1answer
124 views
change the URL without changing the resource name
I'm building a website for a rabbit farmer (let's pretend). This man keeps a close eye on his rabbits, and wants them all categorized. So I built him a RabbitCategoriesController, and added this ...
0
votes
1answer
112 views
Rails 3 Routing Error with Nested Resources
In my Rails application, there are many games, and each game has it's own set of leaderboards. It makes sense then, to have the leaderboards nested in the game, so you can only get to a leaderboard ...
0
votes
1answer
132 views
How do I specify the format for url_for in a nested route?
The following link_to statement:
<%= link_to image_tag("icons/document_24.png"),
[program_code.program, program_code],
:class => :no_hover,
...
0
votes
1answer
63 views
Nested routes vs storing current ids in a session?
Picking up Rails 3 for my next web app.
Basically I have a set of nested resources.
Users => Apps => Form
I spent some time earlier using sessions to hold an app_id so I could access that apps ...
0
votes
1answer
220 views
Rails 3 - session's and routing!
I am building a web app which has multiple projects. The general data model is such that each project has many resources such as documents, registers, etc.Something along the lines of:
class Project ...
0
votes
0answers
34 views
How can I handle this restfully?
I have a batch model and a subjects model
A batch has many subjects (through nested resources).
My subjects#index (eg. "batches/1/subjects") method renders a view with all the subjects for a ...
0
votes
3answers
245 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, :has_many => ...
0
votes
2answers
150 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.resources :posts do ...