disable pdf export via rest in prod mode
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user