aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-07-21 18:04:12 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-07-21 18:04:12 -0700
commit3f299296d15bff5735a430b9d2e33476e8f24f69 (patch)
tree8a03d7f90b1d4e3c8b753efdda03156ee289d1bc /actionpack/lib/action_dispatch/http
parentf620d6c25ef4d971a29e637e1a772cb5b12f2f26 (diff)
downloadrails-3f299296d15bff5735a430b9d2e33476e8f24f69.tar.gz
rails-3f299296d15bff5735a430b9d2e33476e8f24f69.tar.bz2
rails-3f299296d15bff5735a430b9d2e33476e8f24f69.zip
push param encoding in to the utils module
we'll refactor deep munge mostly out of existence shortly
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
-rw-r--r--actionpack/lib/action_dispatch/http/parameters.rb15
1 files changed, 1 insertions, 14 deletions
diff --git a/actionpack/lib/action_dispatch/http/parameters.rb b/actionpack/lib/action_dispatch/http/parameters.rb
index b3633015b5..4defb7f858 100644
--- a/actionpack/lib/action_dispatch/http/parameters.rb
+++ b/actionpack/lib/action_dispatch/http/parameters.rb
@@ -37,20 +37,7 @@ module ActionDispatch
# Convert nested Hash to HashWithIndifferentAccess.
#
def normalize_encode_params(params)
- case params
- when Array
- params.map! { |el| normalize_encode_params(el) }
- when Hash
- if params.has_key?(:tempfile)
- UploadedFile.new(params)
- else
- params.each_with_object({}) do |(key, val), new_hash|
- new_hash[key] = normalize_encode_params(val)
- end.with_indifferent_access
- end
- else
- params
- end
+ ActionDispatch::Request::Utils.normalize_encode_params params
end
end
end