On Fri, Jan 27, 2012 at 11:44 AM, Rodrigo Ruiz <[email protected]> wrote: > Hi, I want to do a polymorphic association like that: > > class User > has_many :my_posts, :as => :owner > end > > class Post > belongs_to, :owner, :polymorphic => true > end > > > meaning that I want to do: > @user = User.new > @user.my_posts (and that would return Post objects) > > also > @post = Post.new > @post.owner (this would return a User object) > > How can I do that?
It looks like you're describing a standard has_many relationship. Are you implying that Post will be extended to be different classes? -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

