diff options
author | Sam Stephenson <sam@37signals.com> | 2006-04-08 07:04:21 +0000 |
---|---|---|
committer | Sam Stephenson <sam@37signals.com> | 2006-04-08 07:04:21 +0000 |
commit | 23585d721d5da714c94b82905d38c7b77a67402a (patch) | |
tree | b0ec6d7bf3bec4771271f575acb549ded0a9b132 /actionpack/CHANGELOG | |
parent | 47b74e6e160b6fcbd47caeed6c98ae995e180a80 (diff) | |
download | rails-23585d721d5da714c94b82905d38c7b77a67402a.tar.gz rails-23585d721d5da714c94b82905d38c7b77a67402a.tar.bz2 rails-23585d721d5da714c94b82905d38c7b77a67402a.zip |
Added :add_headers option to verify which merges a hash of name/value pairs into the response's headers hash if the prerequisites cannot be satisfied
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4201 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 873075d492..09053fc5d8 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,10 @@ *SVN* +* Added :add_headers option to verify which merges a hash of name/value pairs into the response's headers hash if the prerequisites cannot be satisfied. [Sam Stephenson] + ex. verify :only => :speak, :method => :post, + :render => { :status => 405, :text => "Must be post" }, + :add_headers => { "Allow" => "POST" } + * Added ActionController.filter_parameter_logging that makes it easy to remove passwords, credit card numbers, and other sensitive information from being logged when a request is handled #1897 [jeremye@bsa.ca.gov] |