fix: FILE_ALLOWED_EXTENSIONS without quotes

This commit is contained in:
osagit 2021-04-28 17:44:32 +02:00 committed by GitHub
parent f88e53925e
commit 6a6844ec20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -287,5 +287,5 @@ TEXT_MAX_SIZE = 1000000
# 1 Gb Max file size for file submission
FILE_MAX_SIZE = 1000000000
# Managed file extenions for file submission, comma separated
# TODO add 'zip', 'gz' and 'tar.gz'
FILE_ALLOWED_EXTENSIONS = 'txt','sh','pdf'
# TODO add zip, gz and tar.gz
FILE_ALLOWED_EXTENSIONS = txt,sh,pdf