From c4b7d288955d2016311c60f020927d0620cbc95c Mon Sep 17 00:00:00 2001 From: Peter Le Date: Mon, 17 Jul 2023 15:42:43 -0400 Subject: [PATCH] RDISCROWD-6155 Support for application/csv file types support application/csv mime type in file upload component --- pybossa/cloud_store_api/s3.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pybossa/cloud_store_api/s3.py b/pybossa/cloud_store_api/s3.py index bfd044e727..9304580d16 100644 --- a/pybossa/cloud_store_api/s3.py +++ b/pybossa/cloud_store_api/s3.py @@ -31,7 +31,8 @@ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'audio/mpeg', 'audio/wav', - 'application/json'] + 'application/json', + 'application/csv'] DEFAULT_CONN = 'S3_DEFAULT'