Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8427633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:49:56+00:00 2026-06-10T04:49:56+00:00

I have an application that stores products (reads them from a file, no user

  • 0

I have an application that stores products (reads them from a file, no user input from html is given). The thing is that the product will have a sender. a sender can be one or many people that are interested on that product. Now on the index page of my products I have the 2 basic actions, ‘Show/Edit/Destroy’. I would like to add one more action ‘Add Sender’ that adds a sender to the specific product. I understand the logic behind it, the problem I have is the syntax because I am new to rails.

My Product Model:

class Product < ActiveRecord::Base
  attr_accessible :name, :price

   #relationships !
   has_many :senders,  dependent: :destroy #also destroys the senders when product deleted!
end

My Sender Model

class Sender < ActiveRecord::Base
  attr_accessible :application_id, :email, :name

  belongs_to :product
end

I also have this migration to indicate to rails the relationship

class CreateSenders < ActiveRecord::Migration 
  def change
    create_table :senders do |t|
      t.integer :product_id
      t.string :name
      t.text :email 

      t.timestamps
    end
    add_index :senders, [:product_id, :created_at]
  end 
end

Now I am thinking of creating a custom route that, ‘lies’ behind the ‘Add Sender’ link, and takes the id of the ‘current’ product. then I create a sender somehow like this

product.sender.create/add(user_id??)

Any help/guidance please?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T04:49:57+00:00Added an answer on June 10, 2026 at 4:49 am

    Are you using restful routing and if so have you looked into using nested resources? If you’re not using restful routing, I would definitely take a look at it as this is exactly like what you’re looking for here. Everything below assumes you’re using the restful routing method, as it is the Rails default and fits perfectly with your use case.

    The nested resources option of rails routing allows you to add a set of restful routes under an existing set of routes, where the new set of routes pertains to a resource that belongs to the parent resource.

    In this case, the sender would be your nested resource and by setting this up in your routes you can create a separate senders controller (just as you did your products controller) to manage their creation/deletion/etc. The only difference from a simple CRUD controller is that in your senders controller you may have to load in the product as well as the sender (if you need access to the product, for instance if you’re doing validation on it). The product can be loaded from the ID in the routes (this is all covered in the links above).

    If you only need a couple of the restful routes (create/delete but not index/show), you can control that as well (more info here):

    resources :senders, :only => [:new, :create, :destroy]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made a java application that stores data from a .csv file to
I have a table from a vendor application that stores some xml data into
I have to create a user in a third party application that stores its
I have an application that stores images as NSData in Core Data. I load
I have an application that stores images in a database. Now I have learned
Assume I have a application that stores data,gets data and processes data and stores
I have a threaded server application that stores List<Item> dataList . There is a
I have a Windows.Forms based .NET desktop application that stores privileged information in a
I have an application that I'm converting to Symfony/Doctrine. It currently stores a serialized
I am creating a JSF application. I have some items (e.g. products) from database

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.