Flowdock
method

upload

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: DiskService
upload(key, io, checksum: nil, **) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/disk_service.rb, line 19
    def upload(key, io, checksum: nil, **)
      instrument :upload, key: key, checksum: checksum do
        IO.copy_stream(io, make_path_for(key))
        ensure_integrity_of(key, checksum) if checksum
      end
    end
Register or log in to add new notes.