aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 46856ffc5d..1c0c3c4e10 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Allow chaining the :only and :except options for routing resource(s).
+
+ resource :account, :only => [:show, :destroy], :except => :destroy
+
+ This now yields only the show action. This chaining can be useful for passing optional :except
+ options to code that makes use of the :only option.
+
+ *Michael Colavita*
+
* Add ability to filter parameters based on parent keys.
# matches {credit_card: {code: "xxxx"}}