From ce2386280086e8ebb978b16025a778980953c6ea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Mar 2005 15:45:36 +0000 Subject: Added alias_method :to_param, :id to Base, such that Active Record objects to be used as URL parameters in Action Pack automatically #812 [Nicholas Seckar/Sam Stephenson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@936 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/CHANGELOG | 2 ++ activerecord/lib/active_record/base.rb | 3 +++ 2 files changed, 5 insertions(+) (limited to 'activerecord') diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 81e5e97831..594d1dc1e2 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added alias_method :to_param, :id to Base, such that Active Record objects to be used as URL parameters in Action Pack automatically #812 [Nicholas Seckar/Sam Stephenson] + * Improved the performance of the OCI8 adapter for Oracle #723 [pilx/gjenkins] * Added type conversion before saving a record, so string-based values like "10.0" aren't left for the database to convert #820 [dave@cherryville.org] diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index a60741fc21..b945d8d0bc 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -896,6 +896,9 @@ module ActiveRecord #:nodoc: read_attribute(self.class.primary_key) end + # Enables Active Record objects to be used as URL parameters in Action Pack automatically. + alias_method :to_param, :id + def id_before_type_cast #:nodoc: read_attribute_before_type_cast(self.class.primary_key) end -- cgit v1.2.3