mirror of https://github.com/rails/rails
Fix syntax error
This commit is contained in:
parent
b472feddbc
commit
393df7425f
|
@ -80,8 +80,8 @@ module ActiveStorage
|
|||
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
|
||||
whitelist_headers: ['content-length'], **upload_options
|
||||
content_type: content_type, content_length: content_length, content_md5: checksum,
|
||||
whitelist_headers: ["content-length"], **upload_options
|
||||
|
||||
payload[:url] = generated_url
|
||||
|
||||
|
|
Loading…
Reference in New Issue