4 lines
147 B
Python
4 lines
147 B
Python
from django.core.exceptions import ImproperlyConfigured
|
|
from django.conf import settings
|
|
|
|
STAFF_ONLY = getattr(settings, 'TODO_STAFF_ONLY', False)
|