instance method
url_for_direct_upload
Ruby on Rails 7.2.3
Since v5.2.8.1Signature
url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {})
Returns a signed, temporary URL that a direct upload file can be PUT to on the key. The URL will be valid for the amount of seconds specified in expires_in. You must also provide the content_type, content_length, and checksum of the file that will be uploaded. All these attributes will be validated by the service upon upload.
Parameters
-
keyreq -
expires_inkeyreq -
content_typekeyreq -
content_lengthkeyreq -
checksumkeyreq -
custom_metadatakey = {}
Source
# File activestorage/lib/active_storage/service.rb, line 138
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {})
raise NotImplementedError
end
Defined in activestorage/lib/active_storage/service.rb line 138
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Service