In REST, nested resource is a web resource composing another. Its reference is built over the reference of another web resource.
0
votes
1answer
20 views
Rails - Creating a model and its nested resources
I'm trying to create a Gallery model and its has_many associations by passing the following to create.
[
{
"title":"Some Titler",
"description":"",
"date":"18-3-2012",
...
0
votes
1answer
50 views
Devise and shop creation
I would like to add a shop in the user registration with Devise.
Let me explain: on the registration page, the user can check a box "create my shop now." If he checks, a form is displayed ans he can ...
1
vote
4answers
86 views
How to use Link_to with nested resources
I am a totally newbie in Rails.
I have created a web application, I can access through /posts/123/comments/ or /posts/123/comments/new, but i don't know how to use link_to in the index view to show a ...
0
votes
1answer
23 views
Unable to display image from database when using nested resource
Problem displaying image from database
Hi, I am working on a website which allows both customers and account users to upload their pictures.
Using a recipe provided in the book Agile Web ...
1
vote
1answer
27 views
rails best practices for nested recourses - show (parent) vs. index (child)
I have the following nested resources in my rails 3 app.
resources :calendars do
resources :events
end
What is the recommended url/path for displaying (list or calendar) events for a specific ...
0
votes
1answer
27 views
Rails multiple nested resources edit link not adding primary resource
I'm using multiple nested resources like so:
resources :users do
resources :clients do
resources :positions
end
end
resources :clients
resources :positions
Everything is ...
0
votes
1answer
64 views
Capybara + Rspec Nested Route
Having some difficulties with my Capybara RSPEC testing where I have a nested resource. Here's the error I receive:
1) Photo pages visit photo path Photo can be visited after FactoryGirl
create ...
2
votes
2answers
155 views
Sharing Application Resources in WPF
From this page, I read:
If your application uses custom controls and defines resources in a ResourceDictionary (or XAML Resources node), it is recommended that you either define the resources at ...
0
votes
1answer
93 views
rails 3 nested resource `new` path being switched
I don't quite get why this is happening, maybe someone of you does... here it goes.
I've created a nested resource:
resources :order do
resources :ordered_vehicles
end
I've added a link_to the ...
0
votes
1answer
65 views
How can I mass assign across 2 models when importing a csv file?
I can import a CSV file and create a new object (listing in this case) using the attributes from a single model.
I put this in the Listing model
accepts_nested_attributes_for :address
where ...
3
votes
1answer
71 views
Rails: Getting the Parent Object of a Nested Resource
I have a nested resource that belongs to many different models. For instance:
resources :users do
resources :histories, only: [:show]
end
resources :publications do
resources :histories, only: ...
1
vote
1answer
44 views
How to find the correct nested resource when dealing with many to many relationships in Rails 3
Bear with me as I'm a Rails noob. I have a basic league system. League -> Seasons -> Divisions -> Teams. I would like my Divisions and Teams to belong to any number of seasons. My models are as ...
1
vote
1answer
42 views
How to render form with nested and single resource
I have this routes
resources :childs do
resources :draws
end
resources :draws
How can I write a single _form.htm.erb for adding and editing draws?
I mean, from new_draw_path I would use ...
0
votes
1answer
94 views
form_for with namespace nested ressources
I'm getting the following error in my view with form_for when I use the path edit_projects_proj_paquet_mesures_proj_mesure_path() :
undefined method `projects_proj_mesure_path' for ...
0
votes
0answers
29 views
Nested Resource Randomly Not Working
I have nested resources setup and working properly for over 18 months (app hosted on Heroku). I have never seen any errors until the past week.
Last week AND today I am noticing that users are ...
0
votes
1answer
45 views
How can I override the method (PUT vs GET) in rails route helpers?
So I ran into this problem with scoped routes and form_for: form_for and scopes, rails 3
My problem is worse though since I don't just want to scope all methods, I want all to be under '/admin' ...
0
votes
1answer
170 views
Getting Rails Nested Resources to Route to correct nested Controllers
In Rails 3.2.11, I have the following route definitions
resources :foos do
resources :bars
resources :bangs, :controller => 'foos/bangs'
end
which result in the following routes
...
0
votes
1answer
131 views
Rails form_for nested resource error on redirect
I've got Package belongs_to Shop. In my app, user can create package for their shop. I've got the 'create package' to work but it seems there's an error on redirect if I tried to save without ...
0
votes
0answers
68 views
rails 3 cancan nested resource singleton issue
I am using cancan 1.6.7 in my application
routes.rb
resources :projects do
resources :tasks
end
models/project.rb
has_one :task
ability.rb
can :read, Project, :user_id => current_user.id
...
1
vote
2answers
80 views
How do I setup the views for nested resources that are displayed as tabs within their parent resource in Rails?
I have a resource Company that has many Projects and People. The index action for the companies displays each company in a table. The show action shows some additional information about it, and then ...
1
vote
2answers
90 views
Loading nested resources via ajax (rails)
I've got routes that look like this:
resources :projects do
resources :tasks
end
Which gives you a URL like so: URL/projects/14/tasks/3
The models define that:
project has_many :tasks
task ...
2
votes
1answer
51 views
link_to create new nested_resource
I defined the next things:
task.rb:
class Task < ActiveRecord::Base
belongs_to :worker
attr_accessible :done, :name
end
worker.rb:
class Worker < ActiveRecord::Base
has_many :tasks
...
0
votes
1answer
38 views
Rails: nested resources issue
those are my routes:
resources :forums, :shallow=>true do
resources :topics, :shallow=>true do
resources :posts
end
end
within topics/show.html.erb I added a form to leave a ...
1
vote
1answer
145 views
set current user when creating a comment with inherited_resource rails
I am using Rails Inherited_resource gem in my comments controller, and comments is a nested resource so:
resources :projects do
resources :comments do
end
I also have a ...
0
votes
1answer
27 views
Nested Resource Sad Path Renders blank comment
I have a comment resource nested in a post resource.
def create
@post = Post.find(params[:post_id])
@comment = @post.comments.build(params[:comment])
@comment.ip = request.remote_ip
...
2
votes
1answer
153 views
Active Admin before_validation hook?
I have an Active Admin model, :gallery, and it has a nested paperclip resource, :images. :gallery has_many :images.
:gallery has a field, :title, which is required.
When I submit without a title, ...
0
votes
0answers
137 views
Rails routes without controller and admin namespace
The code below is in my route.rb :
resources :books, :path => ''
resources :books, :path => '', :only => [] do
resources :chapter, :path => '', :except => [:index]
end
With ...
1
vote
1answer
86 views
Nested resource and restricting the Routes Created :only and :except
Good day all,
Can someone kindly assist me with nested resources and its best practice.
I would like to restrict my :events route to only :show and :index, is this the correct way of doing it?
...
0
votes
1answer
192 views
Using Namespace nested resources with MongoMapper EmbeddedDocument with form_for
I'm submitting a form that is sending in a child resource's id value for both the child resource and it's parent resource's id. I don't know how to get the form submission to stop duplicating the ...
0
votes
1answer
43 views
Rails 3.2 how to make scoped resources
I am using Rails 3.2 and am attempting to make a scoped nested resource (not sure if this is the right terminology). I have several groups and I want each group to have its own set of pages, like so:
...
1
vote
1answer
35 views
How to set a controller action similar to 'new' in a nested resource
I have a nested resource defined in routes.db:
resources :accounts do
resources :transactions do
end
I would like to create a route that is similar to 'new', but the action would be ...
0
votes
0answers
57 views
Nested resources with common header and sub navigation
My Group show page has three sections, its layout looks like this:
TOP (shows group's information - name, description, owner, etc)
SUB NAVIGATION (tabs include Overview, Members, Files, etc) ...
1
vote
2answers
137 views
High level Rails patterns: organizing views around nested doc, chapter, page hierarchy
What's the Rails way of displaying the views for a somewhat deeply nested hierarchy? Seems like a simple question but try to bear with me and maybe someone will understand (and hopefully clear up) my ...
0
votes
2answers
85 views
creating nested resource
I have a question that bothers me every time I face the same situation.
How to create a nested resource..
I have the following repo
https://github.com/abhishekdagarit/app-e-commerce.git
You ...
0
votes
0answers
384 views
Ruby on Rails Active Admin - Nested Resource routing HABTM
Im using RoR 3.2.3 and Active Admin and everything is going well.
However I have run into a small yet annoying problem.
I have a model called products and another called categories. They are a ...
0
votes
3answers
38 views
Routing error when using nested resources
I have a Post and Comment models. Comment belongs to a Post, and it is nested under Post in routes. Comments are posted from Posts#show. My routes look like this:
resources :posts do
resources ...
0
votes
1answer
561 views
Rails: Nested resources
The following path throws up an error:
= link_to 'Subscribers', user_subscribers_path(current_user)
undefined method `user_subscribers_path' for <#:0x007f9b240b3148>
I am not sure why.
I ...
0
votes
2answers
57 views
How do I get my create action to work for both a nested & non-nested resource?
So I have two models Topic, Client. A Client has_and_belongs_to_many :topics, and a Topic has_and_belongs_to_many :clients.
Basically, what I want to happen is...when someone goes to my Topic#index, ...
0
votes
2answers
119 views
Rails - DRY'ing up new/edit pages in nested resources
My new and edit pages for multiple levels of nested resources all worked fine when I had a flat resource structure. Since nesting resources for the purpose of making a more logical structure, these ...
0
votes
1answer
102 views
Safe redirect to nested resource in Rails
I recently added the Brakeman gem to my Gemfile and had to see, that I should use
:only_path => true
to make it more secure. But i'm using a nested resource and don't know exactly how, here is ...
1
vote
1answer
30 views
Can't manage to deal with nested resources
I have such problem: I don't need to nest all resources, because I need only two action.
First - show all reports related with 1 website.
Second - show all reports.
When I rewrite code in routes.rb ...
1
vote
1answer
139 views
Who can explain the FindResource/LoadResource/LockResource?
I load a module(exe/dll) by LoadLibrary and get a pointer of a binary resource in it .
Microsoft note that should use three steps :
use FindResource return HRSRC
use LoadResource with that HRSRC ...
0
votes
1answer
94 views
Skip Before Filter for Nested Resource
I am currently working on a Rails 3.2 application in which I have two controllers. One is campaign and the other one is posts. Both of them are having a before_filter. Please have a look at the ...
2
votes
1answer
112 views
Better way to optimize/refactor handling nested resources in Rails actions/views?
A friend of mine sent me some code who was having trouble understanding how nested resources work in Rails. Having worked with Rails for many years, I quickly explained it to him and then shared some ...
0
votes
0answers
160 views
jQuery Full Calendar with nested resources in rails
I am using Full Calendar to display events via the JSON feed (works great).
Now each event has an agenda, which I would like to display via Full Calendar in the event show view as well.
Agenda is a ...
0
votes
1answer
955 views
HTTP POST request sent via curl against REST server looses JSON parameters
I created a REST server with Rails that manages Users and associated Comments.
Here is the routes configuration.
resources :users do
resources :comments
end
In the controller I only need actions ...
0
votes
1answer
67 views
Nested Resources vs/and/or CanCan?
I am using Rails 3 with the CanCan gem. The models Users and Networks are a has_many :through => Roles. This part works fine.
Currently I am using CanCan so that on the /networks page it will ...
0
votes
0answers
31 views
can not add the functionality that user has_many tokens
I am trying to make an application where the users have many tokens and they are able to sign up and sign in and generate tokens and its attributes but now I wish to add the functionality that one
...
0
votes
1answer
76 views
Rails app generating wrong :id in parent controller
I am creating a very basic rails app for the first time with 2 resources, Departments(depts) and Members. I believe I have used nested resources correctly, but for some reason after running rails ...
2
votes
2answers
414 views
Rspec and Rails with View Tests and Nested Resources
I'm working on a Yahoo Answers sort of app to improve my Rails skills.
So far I've set two models "Question" and "Answers" and they are nested this way:
resources :questions do
resources ...


