Ruby on Rails Friday, January 27, 2012

You can use :class_name and :foreign_key if that's what you're looking for.


Dheeraj Kumar

On Friday 27 January 2012 at 10:45 PM, Rodrigo Ruiz wrote:

I want this because I'm going to have to has_many associations to comments (to follow to same example):

class User
  has_many :my_comments
  has_many :comments_that_i_follow
end

On Fri, Jan 27, 2012 at 3:08 PM, Greg Akins <angrygreg@gmail.com> wrote:
On Fri, Jan 27, 2012 at 12:05 PM, Rodrigo Ruiz <rodrigo.ruiz7@gmail.com> wrote:
> I did, and it goes like:
>
> @commentable.comments
>
> but I want something like:
>
> @commentable.my_comments
>
> and not change the Comment model name

def my_comments
   return comments
end

--
Greg Akins
http://twitter.com/akinsgre

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment