instance method
find_templates
Ruby on Rails 5.2.8.1
Since v3.0.20 PrivateSignature
find_templates(name, prefix, partial, details, outside_app_allowed = false)
This is what child classes implement. No defaults are needed because Resolver guarantees that the arguments are present and normalized.
Parameters
-
namereq -
prefixreq -
partialreq -
detailsreq -
outside_app_allowedopt = false
Source
# File actionview/lib/action_view/template/resolver.rb, line 168
def find_templates(name, prefix, partial, details, outside_app_allowed = false)
raise NotImplementedError, "Subclasses must implement a find_templates(name, prefix, partial, details, outside_app_allowed = false) method"
end
Defined in actionview/lib/action_view/template/resolver.rb line 168
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Resolver