method
upload
v6.0.0 -
Show latest stable
- Class:
ActiveStorage::Service::S3Service
upload(key, io, checksum: nil, content_type: nil, **)public
No documentation available.
# File activestorage/lib/active_storage/service/s3_service.rb, line 19
def upload(key, io, checksum: nil, content_type: nil, **)
instrument :upload, key: key, checksum: checksum do
object_for(key).put(upload_options.merge(body: io, content_md5: checksum, content_type: content_type))
rescue Aws::S3::Errors::BadDigest
raise ActiveStorage::IntegrityError
end
end