mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
No EOL
363 B
Ruby
13 lines
No EOL
363 B
Ruby
class Club < ActiveRecord::Base
|
|
has_many :memberships
|
|
has_many :members, :through => :memberships
|
|
has_many :current_memberships
|
|
has_one :sponsor
|
|
has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
|
|
|
|
private
|
|
|
|
def private_method
|
|
"I'm sorry sir, this is a *private* club, not a *pirate* club"
|
|
end
|
|
end |