blob: 3a08d28c393c2c5d49fc1ce8cd55a46fd4b193e3 (
plain) (
tree)
|
|
module ActionController
module ApiRendering
extend ActiveSupport::Concern
included do
include Rendering
end
def render_to_body(options = {})
_process_options(options)
super
end
end
end
|