aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/api/api_rendering.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2016-01-21 00:17:15 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2016-01-21 00:17:15 -0300
commite5b9b7d25d3ff3a641adea43dd2bd88625d1da20 (patch)
tree3821f34571b1fb0f63f3ef14921a44b370a0839f /actionpack/lib/action_controller/api/api_rendering.rb
parentc555c03bc104670cfdbbd0e6828e325ec46545fa (diff)
parent77acc004efad07dfd4d4f83be14ef897968a3fd9 (diff)
downloadrails-e5b9b7d25d3ff3a641adea43dd2bd88625d1da20.tar.gz
rails-e5b9b7d25d3ff3a641adea43dd2bd88625d1da20.tar.bz2
rails-e5b9b7d25d3ff3a641adea43dd2bd88625d1da20.zip
Merge pull request #23149 from maclover7/fix-23142
Re-add ActionController::ApiRendering
Diffstat (limited to 'actionpack/lib/action_controller/api/api_rendering.rb')
-rw-r--r--actionpack/lib/action_controller/api/api_rendering.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/api/api_rendering.rb b/actionpack/lib/action_controller/api/api_rendering.rb
new file mode 100644
index 0000000000..3a08d28c39
--- /dev/null
+++ b/actionpack/lib/action_controller/api/api_rendering.rb
@@ -0,0 +1,14 @@
+module ActionController
+ module ApiRendering
+ extend ActiveSupport::Concern
+
+ included do
+ include Rendering
+ end
+
+ def render_to_body(options = {})
+ _process_options(options)
+ super
+ end
+ end
+end