disable pdf export via rest in prod mode

This commit is contained in:
dechert
2021-06-18 15:24:13 +02:00
parent 7a5698467f
commit 152efedf7a
2 changed files with 46 additions and 1 deletions

View File

@@ -64,7 +64,10 @@ def upload_image():
csv_file.save(output_file_path)
# run converter
converter.convert(output_file_path, True)
if config_parser.prod_mode:
converter.convert(output_file_path, False)
else:
converter.convert(output_file_path, True)
return render_template("return_result.html")
# return redirect(request.url)