Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a many-to-many association of Tags and Users. when I create a tag my join-table doesn't update, I think there's something with the controller..

tag model

class Tag < ActiveRecord::Base
  validates :tag, :presence => true
  has_and_belongs_to_many :user, :join_table => "tags_users"
end

user model

class User < ActiveRecord::Base
  devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable

  attr_accessible :email, :password, :password_confirmation,:remember_me

  has_and_belongs_to_many :tag, :join_table => "tags_users"
end

tags_controller

class TagsController < ApplicationController
  before_filter :authenticate_user!, :except => [:index, :show]

  def create
    @tag = Tag.new(params[:tag])

    respond_to do |format|
      if @tag.save
        format.html { redirect_to tags_path, notice: 'Tag was successfully created.' }
        format.json { render json: @tag, status: :created, location: @tag }
      else
        format.html { render action: "new" }
        format.json { render json: @tag.errors, status: :unprocessable_entity }
      end
    end
  end
end
share|improve this question

1 Answer

up vote 0 down vote accepted

You're never joining together the created tag and the current user from what I can see.

@tag = Tag.new(params[:tag])
@tag.users << current_user

Also, usually the argument of has_and_belongs_to_many is pluralized, e.g. has_and_belongs_to_many :users

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.