Flowdock
method

_normalize_options

Importance_0
v3.2.8 - 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 345
    def _normalize_options(options)
      super

      if _include_layout?(options)
        layout = options.key?(:layout) ? options.delete(:layout) : :default
        options[:layout] = _layout_for_option(layout)
      end
    end
Register or log in to add new notes.