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 8919167
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:56:51+00:00 2026-06-15T05:56:51+00:00

I’m fairly new to Rails, I got this code working but I think I’m

  • 0

I’m fairly new to Rails, I got this code working but I think I’m preventing it from doing it some of its Rails magic:

Goal: Create a cause and have the creator become a member via the build method and the has_many :through association in the Cause_User_Membership table.

Question: I’ve gotten it to work, by creating a cause and then creating a membership ‘manually.’ Is there a way for the Cause_User_Membership relationship to be created automatically on the creation of a cause?

Cause_Controller.rb

def create
@cause = current_user.causes.build(params[:cause].merge :created_by => current_user.id)

respond_to do |format|
  if @cause.save 
    @membership = current_user.cause_user_memberships.build(:cause_id => @cause.id)
    @membership.save
    format.json { render :json => {current_user: current_user, results: @cause}}
  else
    format.json { render :json => {Message: "You messed up"}}
  end
end
end

User.rb (snippet)

has_many :cause_user_memberships
has_many :causes, :through => :cause_user_memberships

Cause.rb

attr_accessible :title, :location, :description,...
has_many :cause_user_memberships
has_many :users, :through => :cause_user_memberships

Cause_User_Membership.rb (<–probably not my best model name)

    # == Schema Information
#
# Table name: cause_user_memberships
#
#  id         :integer          not null, primary key
#  user_id    :integer          not null
#  cause_id   :integer          not null
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

class CauseUserMembership < ActiveRecord::Base
  attr_accessible :cause_id, :user_id

  belongs_to :user #, :class_name => "User", :foreign_key => "user_id" 
  belongs_to :cause #, :class_name => "Cause", :foreign_key => "cause_id"

end
  • 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-15T05:56:53+00:00Added an answer on June 15, 2026 at 5:56 am

    Update:

    I found a slightly more “magical” way to do this using accepts_nested_attributes_for. First, add a line to your CauseUserMembership model:

    class CauseUserMembership < ActiveRecord::Base
      attr_accessible :cause_id, :user_id
    
      belongs_to :user
      belongs_to :cause 
    
      accepts_nested_attributes_for :cause
    

    With that change, you can do this:

    def create
      @membership = current_user.memberships.build
      @membership.cause = Cause.new(params[:cause].merge(:created_by => current_user.id)
    
      respond_to do |format|
        if @membership.save
          ...
    

    Because you have told rails to accept nested attributes for the cause association on CauseUserMembership, it will save the new cause you assigned to @membership.cause when it saves the membership itself. So you can save both the cause and membership records at one time, rather than separately.

    Original answer:

    I think what you’ve done is pretty much the right way to do this. It can be simplified a tad bit: you don’t need to build cause from current_user, you can just use new (the :through associations on cause and current_user are set when you create @membership).

    So like this (I only changed the first line in create):

    def create
      @cause = Cause.new(params[:cause].merge(:created_by => current_user.id))
    
      respond_to do |format|
        if @cause.save
          @membership = current_user.cause_user_memberships.build(:cause_id => @cause.id)
          @membership.save
          ...
    

    See also: Many-to-Many through association Build/Create properties in Rails app

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
This could be a duplicate question, but I have no idea what search terms
Does anyone know how can I replace this 2 symbol below from the string
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but

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.