Files
edx-platform/common/djangoapps/cache_toolbox/app_settings.py
2012-06-18 13:21:06 -04:00

9 lines
174 B
Python

from django.conf import settings
# Default cache timeout
CACHE_TOOLBOX_DEFAULT_TIMEOUT = getattr(
settings,
'CACHE_TOOLBOX_DEFAULT_TIMEOUT',
60 * 60 * 24 * 3,
)