method

identify_without_saving

rails latest stable - Class: ActiveStorage::Blob::Identifiable
identify_without_saving()
public

No documentation available.

# File activestorage/app/models/active_storage/blob/identifiable.rb, line 10
  def identify_without_saving
    unless identified?
      self.content_type = identify_content_type
      self.identified = true
    end
  end