Limit uploadable file size to 32 MiB for non-subscribers.

This commit is contained in:
2016-07-08 11:26:56 +02:00
parent a322aee0c7
commit 5d26de633c
4 changed files with 107 additions and 5 deletions

View File

@@ -101,3 +101,8 @@ LOGGING = {
SHORT_LINK_BASE_URL = 'https://blender.cloud/r/'
SHORT_CODE_LENGTH = 6 # characters
# People are allowed this many bytes per uploaded file.
FILESIZE_LIMIT_BYTES_NONSUBS = 32 * 2 ** 20
# Unless they have one of those roles.
ROLES_FOR_UNLIMITED_UPLOADS = {u'subscriber', u'demo', u'admin'}