method
_process_render_template_options
v8.0.0 -
Show latest stable
- Class:
ActionView::Layouts
_process_render_template_options(options)public
No documentation available.
# File actionview/lib/action_view/layouts.rb, line 350
def _process_render_template_options(options) # :nodoc:
super
if _include_layout?(options)
layout = options.delete(:layout) { :default }
options[:layout] = _layout_for_option(layout)
end
end