Increase assignment upload limit from 4MB to 20MB (#21589)

Due to a request from a Master's partner who reports
that the current 4MB limit is not enough for their
degree programs.

EDUCATOR-4635
This commit is contained in:
Kyle McCormick
2019-09-08 11:25:24 -04:00
committed by GitHub
parent 725d7eaa36
commit 7e928ade22

View File

@@ -736,7 +736,7 @@ AUTHENTICATION_BACKENDS = [
'bridgekeeper.backends.RulePermissionBackend',
]
STUDENT_FILEUPLOAD_MAX_SIZE = 4 * 1000 * 1000 # 4 MB
STUDENT_FILEUPLOAD_MAX_SIZE = 20 * 1000 * 1000 # 20 MB
MAX_FILEUPLOADS_PER_INPUT = 20
# Set request limits for maximum size of a request body and maximum number of GET/POST parameters. (>=Django 1.10)