Merge pull request #2223 from betagouv/fix-file-download-without-extension

Temporary fix to allow users to download files with extensions
This commit is contained in:
Pierre de La Morinerie 2018-07-09 12:34:06 +02:00 committed by GitHub
commit 9e08ac9da2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
- pj = champ.piece_justificative_file
- if champ.virus_scan.present?
- if champ.virus_scan.safe?
= link_to pj.filename.to_s, url_for(pj), target: '_blank'
#FIXME : use url_for(pj) and remove download attribute when Riak content_disposition bug is solved https://github.com/betagouv/tps/issues/2180
= link_to pj.filename.to_s, pj.service_url(expires_in: 1.hour), target: '_blank', download: pj.filename.to_s
- else
= pj.filename.to_s
- if champ.virus_scan.pending?