2008-03-21 14:09:03 -04:00
|
|
|
class Member < ActiveRecord::Base
|
|
|
|
has_one :current_membership
|
|
|
|
has_many :memberships
|
|
|
|
has_many :fellow_members, :through => :club, :source => :members
|
|
|
|
has_one :club, :through => :current_membership
|
|
|
|
has_one :favourite_club, :through => :memberships, :conditions => ["memberships.favourite = ?", true], :source => :club
|
|
|
|
has_one :sponsor, :as => :sponsorable
|
|
|
|
has_one :sponsor_club, :through => :sponsor
|
2008-11-15 01:59:12 -05:00
|
|
|
has_one :member_detail
|
|
|
|
has_one :organization, :through => :member_detail
|
2008-12-02 16:21:21 -05:00
|
|
|
belongs_to :member_type
|
2008-03-21 14:09:03 -04:00
|
|
|
end
|