9 lines
174 B
Python
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,
|
|
)
|