Content disposition header

This commit is contained in:
jfriedli 2019-10-03 04:29:42 -07:00
parent c36fc9c20e
commit f544d94a8c
2 changed files with 4 additions and 2 deletions

View file

@ -50,7 +50,7 @@ def create_app(test_config=None):
def remove_file(response):
os.remove(complete_path)
return response
return send_from_directory(app.config['UPLOAD_FOLDER'], filepath)
return send_from_directory(app.config['UPLOAD_FOLDER'], filepath, as_attachment=True)
@app.route('/', methods=['GET', 'POST'])
def upload_file():
@ -180,7 +180,7 @@ def create_app(test_config=None):
os.remove(complete_path)
return response
return send_from_directory(app.config['UPLOAD_FOLDER'], filepath)
return send_from_directory(app.config['UPLOAD_FOLDER'], filepath, as_attachment=True)
class APIBulkDownloadCreator(Resource):
schema = {