aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/club.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-10-13 19:01:37 +0200
committerPratik Naik <pratiknaik@gmail.com>2008-10-13 19:02:34 +0200
commit691aa20280456c332bfaaf69b58adc86fd86a2b8 (patch)
tree5841c2f0211b021d473fdba3eb03ac487ef50130 /activerecord/test/models/club.rb
parent42cbd710bb116998f92029adacb45698905a2e3b (diff)
downloadrails-691aa20280456c332bfaaf69b58adc86fd86a2b8.tar.gz
rails-691aa20280456c332bfaaf69b58adc86fd86a2b8.tar.bz2
rails-691aa20280456c332bfaaf69b58adc86fd86a2b8.zip
Ensure methods called on association proxies respect access control. [#1083 state:resolved] [Adam Milligan, Pratik]
Diffstat (limited to 'activerecord/test/models/club.rb')
-rw-r--r--activerecord/test/models/club.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/models/club.rb b/activerecord/test/models/club.rb
index 3ddb691dfb..6e7cdd643a 100644
--- a/activerecord/test/models/club.rb
+++ b/activerecord/test/models/club.rb
@@ -4,4 +4,10 @@ class Club < ActiveRecord::Base
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 \ No newline at end of file