mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 18:31:10 +01:00
15 lines
252 B
Python
15 lines
252 B
Python
|
|
||
|
"""
|
||
|
Default settings for jutda-helpdesk.
|
||
|
|
||
|
"""
|
||
|
|
||
|
from django.conf import settings
|
||
|
|
||
|
# check for django-tagging support
|
||
|
HAS_TAG_SUPPORT = 'tagging' in settings.INSTALLED_APPS
|
||
|
try:
|
||
|
import tagging
|
||
|
except ImportError:
|
||
|
HAS_TAG_SUPPORT = False
|