aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-05-09 03:51:06 +0000
committerRick Olson <technoweenie@gmail.com>2007-05-09 03:51:06 +0000
commit08736788c906d2b05fe6c45e6922e594149c9b12 (patch)
tree40430c567a1662a958ee78aa230b5c1431dc4fdb /activeresource/CHANGELOG
parent2b6ad48ea3c80e693b3c92f90432c790c8ee1510 (diff)
downloadrails-08736788c906d2b05fe6c45e6922e594149c9b12.tar.gz
rails-08736788c906d2b05fe6c45e6922e594149c9b12.tar.bz2
rails-08736788c906d2b05fe6c45e6922e594149c9b12.zip
Handle string and symbol param keys when splitting params into prefix params and query params.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6703 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource/CHANGELOG')
-rw-r--r--activeresource/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG
index bb23e0d2ac..cd1cb557c9 100644
--- a/activeresource/CHANGELOG
+++ b/activeresource/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Handle string and symbol param keys when splitting params into prefix params and query params.
+
+ Comment.find(:all, :params => { :article_id => 5, :page => 2 }) or Comment.find(:all, :params => { 'article_id' => 5, :page => 2 })
+
* Added find-one with symbol [DHH]. Example: Person.find(:one, :from => :leader) # => GET /people/leader.xml
* BACKWARDS INCOMPATIBLE: Changed the finder API to be more extensible with :params and more strict usage of scopes [DHH]. Changes: