Flowdock
method

template_exempt_from_layout?

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionController::Base
template_exempt_from_layout?(template_name = default_template_name) private

No documentation

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

Hide source
# File actionpack/lib/action_controller/base.rb, line 1242
      def template_exempt_from_layout?(template_name = default_template_name)
        extension = @template && @template.finder.pick_template_extension(template_name)
        name_with_extension = !template_name.include?('.') && extension ? "#{template_name}.#{extension}" : template_name
        @@exempt_from_layout.any? { |ext| name_with_extension =~ ext }
      end
Register or log in to add new notes.