Flowdock
method

url_for_direct_upload

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: S3Service
url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) 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/s3_service.rb, line 79
    def url_for_direct_upload(key, expires_in,, content_type,, content_length,, checksum))
      instrument :url, key: key do |payload|
        generated_url = object_for(key).presigned_url :put, expires_in: expires_in.to_i,
          content_type: content_type, content_length: content_length, content_md5: checksum

        payload[:url] = generated_url

        generated_url
      end
    end
Register or log in to add new notes.