aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/api.rb
diff options
context:
space:
mode:
authorJorge Bejar <jorge@wyeworks.com>2015-06-02 15:48:20 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2015-06-11 16:54:16 -0300
commita2c9a7308474bc1d7fc35df9560c46125d94f5a4 (patch)
tree12fc2f3103b56d50e9d92bebbffe7087ff3e6fda /actionpack/lib/action_controller/api.rb
parentebcc15ca4ea22f8ace57a5251ceb8de4b917cd90 (diff)
downloadrails-a2c9a7308474bc1d7fc35df9560c46125d94f5a4.tar.gz
rails-a2c9a7308474bc1d7fc35df9560c46125d94f5a4.tar.bz2
rails-a2c9a7308474bc1d7fc35df9560c46125d94f5a4.zip
Include ParamsWrapper in AC::API
ParamsWrapper was initially removed from API controllers according to the following discusision: https://github.com/rails-api/rails-api/issues/33 However, we're including it again so Rails API devs can decide whether to enable or disable it.
Diffstat (limited to 'actionpack/lib/action_controller/api.rb')
-rw-r--r--actionpack/lib/action_controller/api.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/api.rb b/actionpack/lib/action_controller/api.rb
index 9dc96bd3e6..b4583a073b 100644
--- a/actionpack/lib/action_controller/api.rb
+++ b/actionpack/lib/action_controller/api.rb
@@ -128,7 +128,11 @@ module ActionController
# Add instrumentations hooks at the bottom, to ensure they instrument
# all the methods properly.
- Instrumentation
+ Instrumentation,
+
+ # Params wrapper should come before instrumentation so they are
+ # properly showed in logs
+ ParamsWrapper
]
MODULES.each do |mod|