Flowdock
method

find_template

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Digestor
find_template(finder, name, prefixes, partial, keys) private

No documentation

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

Hide source
# File actionview/lib/action_view/digestor.rb, line 73
        def find_template(finder, name, prefixes, partial, keys)
          finder.disable_cache do
            format = finder.rendered_format
            result = finder.find_all(name, prefixes, partial, keys, formats: [format]).first if format
            result || finder.find_all(name, prefixes, partial, keys).first
          end
        end
Register or log in to add new notes.