method

try_files

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: FileHandler
try_files(filepath, content_type, accept_encoding:) 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_dispatch/middleware/static.rb, line 107 def try_files(filepath, content_type, accept_encoding)) headers = { "Content-Type" => content_type } if compressible? content_type try_precompressed_files filepath, headers, accept_encoding: accept_encoding elsif file_readable? filepath [ filepath, headers ] end end
Register or log in to add new notes.