blob: 3a08d28c393c2c5d49fc1ce8cd55a46fd4b193e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|