2008-03-21 14:09:03 -04:00
|
|
|
class Member < ActiveRecord::Base
|
|
|
|
has_one :current_membership
|
2011-05-11 03:55:36 -04:00
|
|
|
has_one :selected_membership
|
2010-12-19 09:17:29 -05:00
|
|
|
has_one :membership
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :club, through: :current_membership
|
|
|
|
has_one :selected_club, through: :selected_membership, source: :club
|
|
|
|
has_one :favourite_club, -> { where "memberships.favourite = ?", true }, through: :membership, source: :club
|
2016-08-16 03:30:11 -04:00
|
|
|
has_one :hairy_club, -> { where clubs: { name: "Moustache and Eyebrow Fancier Club" } }, through: :membership, source: :club
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :sponsor, as: :sponsorable
|
|
|
|
has_one :sponsor_club, through: :sponsor
|
|
|
|
has_one :member_detail, inverse_of: false
|
|
|
|
has_one :organization, through: :member_detail
|
2008-12-02 16:21:21 -05:00
|
|
|
belongs_to :member_type
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :nested_member_types, through: :member_detail, source: :member_type
|
|
|
|
has_one :nested_member_type, through: :member_detail, source: :member_type
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :nested_sponsors, through: :sponsor_club, source: :sponsor
|
|
|
|
has_one :nested_sponsor, through: :sponsor_club, source: :sponsor
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :organization_member_details, through: :member_detail
|
|
|
|
has_many :organization_member_details_2, through: :organization, source: :member_details
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :club_category, through: :club, source: :category
|
2011-03-02 16:24:56 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :current_memberships, -> { where favourite: true }
|
|
|
|
has_many :clubs, through: :current_memberships
|
2012-08-10 12:42:48 -04:00
|
|
|
|
2015-08-12 20:14:42 -04:00
|
|
|
has_many :tenant_memberships
|
2016-08-06 12:26:20 -04:00
|
|
|
has_many :tenant_clubs, through: :tenant_memberships, class_name: "Club", source: :club
|
2015-08-12 20:14:42 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :club_through_many, through: :current_memberships, source: :club
|
2014-10-15 09:25:09 -04:00
|
|
|
|
|
|
|
belongs_to :admittable, polymorphic: true
|
|
|
|
has_one :premium_club, through: :admittable
|
2010-10-12 11:40:24 -04:00
|
|
|
end
|
2012-06-21 15:47:12 -04:00
|
|
|
|
|
|
|
class SelfMember < ActiveRecord::Base
|
|
|
|
self.table_name = "members"
|
2016-08-06 13:37:57 -04:00
|
|
|
has_and_belongs_to_many :friends, class_name: "SelfMember", join_table: "member_friends"
|
2012-06-21 15:47:12 -04:00
|
|
|
end
|