2006-02-10 05:19:41 +00:00
|
|
|
class Person < ActiveRecord::Base
|
|
|
|
has_many :readers
|
|
|
|
has_many :posts, :through => :readers
|
2008-02-18 00:14:54 +00:00
|
|
|
has_many :posts_with_no_comments, :through => :readers, :source => :post, :include => :comments, :conditions => 'comments.id is null'
|
2008-04-25 22:23:48 +00:00
|
|
|
|
|
|
|
has_many :references
|
|
|
|
has_many :jobs, :through => :references
|
|
|
|
has_one :favourite_reference, :class_name => 'Reference', :conditions => ['favourite=?', true]
|
2008-06-09 15:30:48 +00:00
|
|
|
has_many :posts_with_comments_sorted_by_comment_id, :through => :readers, :source => :post, :include => :comments, :order => 'comments.id'
|
2008-12-19 01:02:21 +00:00
|
|
|
|
|
|
|
belongs_to :primary_contact, :class_name => 'Person'
|
|
|
|
has_many :agents, :class_name => 'Person', :foreign_key => 'primary_contact_id'
|
2009-05-18 06:35:47 +00:00
|
|
|
belongs_to :number1_fan, :class_name => 'Person'
|
2008-12-19 01:02:21 +00:00
|
|
|
|
2010-01-17 23:08:19 +00:00
|
|
|
scope :males, :conditions => { :gender => 'M' }
|
|
|
|
scope :females, :conditions => { :gender => 'F' }
|
2006-02-10 05:19:41 +00:00
|
|
|
end
|