method
format
v7.0.0 -
Show latest stable
- Class:
ActiveStorage::Blob::Representable
format()private
No documentation available.
# File activestorage/app/models/active_storage/blob/representable.rb, line 114
def format
if filename.extension.present? && MiniMime.lookup_by_extension(filename.extension)&.content_type == content_type
filename.extension
else
MiniMime.lookup_by_content_type(content_type)&.extension
end
end