forked from MIRRI/mirri_tools
6 lines
266 B
Python
6 lines
266 B
Python
from django.conf import settings
|
|
|
|
VALID_EXCEL_UPLOAD_DIR = getattr(settings, 'WEB_TOOLS_VALID_EXCEL_UPLOAD_DIR')
|
|
NUM_ERROR_LIMIT = getattr(settings, 'WEB_TOOLS_NUM_ERROR_LIMIT', 100)
|
|
NOTIFICATION_RECEIVERS = getattr(settings, 'WEB_TOOLS_NOTIFICATION_RECEIVERS', [])
|