method

matches?

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: TemplateDetails
matches?(requested) public

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/template_details.rb, line 42
    def matches?(requested)
      requested.formats_idx[@format] &&
        requested.locale_idx[@locale] &&
        requested.variants_idx[@variant] &&
        requested.handlers_idx[@handler]
    end
Register or log in to add new notes.