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) ...
5
votes
4answers
6k views
form_for with nested resources
I have a two-part somewhat noob question about form_for and nested resources. Let's say I'm writing a blog engine and I want to relate a comment to an article. I've defined a nested resource as ...
4
votes
3answers
403 views
Rails Nested Singular Resource Routing
I have a simple User model with a singular nested Profile resource so in my routes.rb I have:
resources :users do
resource :profile, :only => [:edit, :update, :show]
end
This generates the ...
4
votes
1answer
2k views
Rails nested form with nested resource: update belongs_to association when creating new has_many
Hey guys, I've been beating my head against a wall with a particular use case for nested forms (I'm using Rails 2.3.5).
Essentially I have Project and Payment models that looks like this
class ...
4
votes
1answer
2k views
RSpec, stubbing nested resource methods
I've got two models:
class Solution < ActiveRecord::Base
belongs_to :owner, :class_name => "User", :foreign_key => :user_id
end
class User < ActiveRecord::Base
has_many :solutions
...
3
votes
1answer
106 views
Rails 3 Nested resource routes inherits parent constraints, how to avoid it?
It you define constraint on "id" in parent resource:
resources :foo, constraints: { :id => /CONST/ } do
resources :bar
end
The nested resource will inherits that constraint for its own id, ...
3
votes
3answers
588 views
DRYing up Rails Views with Nested Resources
What is your solution to the problem if you have a model that is both not-nested and nested, such as products:
a "Product" can belong_to say an "Event", and a Product can also just be independent.
...
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 ...
2
votes
2answers
48 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
1answer
268 views
Testing nested resources with RSpec
I am trying to create tests for nested resources in Rails. The relevant route definition is:
resources :communities do
resources :contents, :type => 'Content'
end
Using RSpec and factory_girl, ...
2
votes
3answers
167 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
511 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
153 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.
...
2
votes
1answer
24 views
Nested resources segments misplacement
I'm trying to implement basic social network features to allow users to add, delete friends, accept and decline friedship requests.
my user resource looks like this:
resources :users
resources ...
2
votes
2answers
360 views
Problem with routes in functional testing
I'm making a simple test project to prepare myself for my test.
I'm fairly new to nested resources, in my example I have a newsitem and each newsitem has comments.
The routing looks like this:
...
2
votes
1answer
559 views
Rails RESTful delete in nested resources
Okay, so here's an example scenario. There is a student resource resources :students, and students has and belongs to many collections: resources :clubs, resources :majors, etc.
So we can set up our ...
2
votes
2answers
534 views
Rails - nesting resource with two parents
Say I have a child model with two parent models:
Event has_many tickets
Person has_many tickets
Ticket belongs_to Event
Ticket belongs_to Person
Routes are mapped so Ticket always nests within ...
2
votes
1answer
2k 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 Statement, but I can't get ...
1
vote
2answers
39 views
Dropping second model name in nested resource route
I'm using slugs for IDs, so wanting URLs like /songs/radiohead/karma-police instead of /artists/radiohead/songs/karma-police.
Slugs can be achieved with:
def to_param
slug
end
But how is there ...
1
vote
1answer
39 views
Rails nested resources available in another context
I plan on having galleries with nested images, so images belong in a gallery. I would then like images to have a Boolean option to determine whether or not a particular image shows up on the front ...
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
159 views
ActiveRecord building for nested resource
(NOTE: Source code here https://github.com/cthielen/dss-evote)
I've got a simple voting application. A survey is the set of questions to vote on, a ballot is a per-user instance of their preferences, ...
1
vote
2answers
102 views
rails : routes in nested resources
I use nested resources
#route.rb
resources :users do
resources :posts
end
and with
#route.rb
match '/:username' => 'users#show', :as => :user
I change /user/id to /username
but, ...
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
1answer
113 views
form for nested resource
I have gone through tons of the form_for nested resource questions and can't get any of the solutions to work for me. I figured its time to ask a personalized question.
I have two models, jobs and ...
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
1answer
125 views
Using nested controllers
Since my site had an admin section and a normal (front-end user) section, I needed to structure the articles controller in such a way that it was RESTful.
So what I did was , have 2 articles ...
1
vote
4answers
910 views
Finds in Rails 3 and ActiveRelation
I'm trying to understand the new arel engine in Rails 3 and I've got a question.
I've got two models, User and Task
class User < ActiveRecord::Base
has_many :tasks
end
class Task < ...
1
vote
3answers
662 views
Rails “NoMethodError” with sub-resources
I'm a newbie Rails developer who is getting the following error when trying to access the 'new' action on my CityController:
undefined method `cities_path' for ...
1
vote
2answers
2k views
Nested Resource testing RSpec
I have two models:
class Solution < ActiveRecord::Base
belongs_to :owner, :class_name => "User", :foreign_key => :user_id
end
class User < ActiveRecord::Base
...
1
vote
1answer
357 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
...
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
30 views
Nested resource view spec seems to be referring to a non-existent route
Rails 3.1.0
Rspec 2
In a view spec for a nested resource, do I need to instantiate/stub
the parent resource before I stub the nested resource?
I am asking this because all my view specs are ...
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
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
2answers
99 views
Rails 3.1 nested resource with composite primary key (id + parent_id)
Let's assume I need two resources nested in the routes.rb as follows:
resources :post do
resources :comment
end
By convention comments.id will be the comments primary key and comments.post_id ...
0
votes
1answer
50 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
38 views
form_for with nested resource doesn't submit a post-request
first: I promise I've read through every post regarding this topic, searched the whole web, but still don't know...
I have to models Trip (has_many) and Accomodation (belongs_to).
Accomodations are ...
0
votes
1answer
37 views
Rails 3 SQL query inside nested resources
Say I have a series of nested resources (Magazine, Edition, and Ad) in a Rails application, such that magazines have many editions, which subsequently have many ads.
How can I do a query to produce ...
0
votes
1answer
100 views
RESTful form_for with nested resources via join table
I'm trying to build an app where there is a model for "Jobs" that can be associated with a "Tags" model where the associations are tracked using a join table. I'm wanting to find it it's possible to ...
0
votes
0answers
82 views
Cancan not loading nested resources as I expect it to
Cancan is working fine when user's are logged in. But when a user is a "guest" I would like them to be able to see some photos, but not those where the Photo's parent Post has a restriction ...
0
votes
1answer
29 views
How to build an Active Recond query for the show action in the controller of the nested resource?
I have two models: Books and Chapters, where book has many chapters.
I've set up the route like:
match 'book/:book_title/:chapter/:chapter_title' => 'chapter#show', :as => "chapter"
and the ...
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
91 views
Question about Rspec and Nested Resources
I have a simple app with some nested resources. Contacts and Events. Contacts can have many Events. Events belong to a Contact.
I'm trying to spec out the events update action but seem to be ...
0
votes
2answers
246 views
Rendering nested form partials in other controllers
I have three resources: Jobs, Questions and Answers.
The relationships are: Job has many questions; Question has many Answers; Job has many Answers.
I have nested all of the forms on the jobs/new ...
0
votes
1answer
172 views
Rails form_for loop with nested resources
I have three resources: Jobs, Questions and Answers.
The relationships are: Job has many questions; Question has many Answers.
I have created a nested form on the Jobs form view,
which includes the ...
0
votes
2answers
347 views
Rails 3 Nested Resources Edit/Update method - routing error
I need some help with nested resource actions. I have three nested resources: Jobs, Questions and Answers. I am currently only trying to get the edit/update method to work for the questions ...
0
votes
1answer
113 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
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 ...