method

_normalize_options

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: AbstractController::Layouts
_normalize_options(options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/abstract_controller/layouts.rb, line 339 def _normalize_options(options) # :nodoc: super if _include_layout?(options) layout = options.delete(:layout) { :default } options[:layout] = _layout_for_option(layout) end end
Register or log in to add new notes.