aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage/service/s3_service.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2017-08-20 18:09:44 -0400
committerGeorge Claghorn <george.claghorn@gmail.com>2017-08-20 18:09:44 -0400
commit376dd5c0011214309d984c9a1e98958e2bc46c48 (patch)
treeb997a3eadb8760d1fbd35efa4c2308adef08185c /activestorage/lib/active_storage/service/s3_service.rb
parent8bd14971b908b7d3c7b41a715d2904df88ee7b3c (diff)
downloadrails-376dd5c0011214309d984c9a1e98958e2bc46c48.tar.gz
rails-376dd5c0011214309d984c9a1e98958e2bc46c48.tar.bz2
rails-376dd5c0011214309d984c9a1e98958e2bc46c48.zip
DRY
Diffstat (limited to 'activestorage/lib/active_storage/service/s3_service.rb')
-rw-r--r--activestorage/lib/active_storage/service/s3_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activestorage/lib/active_storage/service/s3_service.rb b/activestorage/lib/active_storage/service/s3_service.rb
index bef2ecbea9..2b52c3786d 100644
--- a/activestorage/lib/active_storage/service/s3_service.rb
+++ b/activestorage/lib/active_storage/service/s3_service.rb
@@ -52,10 +52,10 @@ module ActiveStorage
end
end
- def url(key, expires_in:, disposition:, filename:, content_type:)
+ def url(key, expires_in:, disposition:, filename:, disposition:, content_type:)
instrument :url, key do |payload|
generated_url = object_for(key).presigned_url :get, expires_in: expires_in,
- response_content_disposition: "#{disposition}; filename=\"#{filename}\"",
+ response_content_disposition: disposition,
response_content_type: content_type
payload[:url] = generated_url