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.

This is what I have.

item.rb:

has_many :comments
belongs_to :user

user.rb:

devise :database_authenticatable, :registerable,
       :recoverable, :rememberable, :trackable, :validatable

# Setup accessible (or protected) attributes for your model

attr_accessible :email, :password, :password_confirmation, :remember_me, :display_name
has_many :items 
has_many :comments, :through => :items

comment.rb:

belongs_to :item
belongs_to :user
delegate :display_name, :to => :user, :prefix => true

but <%= comment.user_display_name%> is returning

Comment#user_display_name delegated to user.display_name, but user is nil:
#<Comment id: 16, body: "fdsfsd", commenter_id: 1, item_id: 2, created_at:
"2012-03-07 23:41:10", updated_at: "2012-03-07 23:41:10">
share|improve this question
is comment.user nil? if so then the error is valid – Naren Sisodiya Mar 8 '12 at 3:13

1 Answer

You seem to have 'commenter' instead of 'user' in the schema.

Maybe you should have

belongs_to :commenter, :class_name => 'User', :foreign_key => 'user_id'

in your comment.rb

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.