13 lines
418 B
Python
13 lines
418 B
Python
"""
|
|
A new cms ENV configuration to use a slow upload file handler to help test
|
|
progress bars in uploads
|
|
"""
|
|
# pylint: disable=unused-wildcard-import
|
|
from .dev import * # pylint: disable=wildcard-import
|
|
|
|
FILE_UPLOAD_HANDLERS = [
|
|
'contentstore.debug_file_uploader.DebugFileUploader',
|
|
'django.core.files.uploadhandler.MemoryFileUploadHandler',
|
|
'django.core.files.uploadhandler.TemporaryFileUploadHandler',
|
|
]
|