forked from extern/django-helpdesk
f418e97efc
Patch courtesy of david@zettazebra.com, adds the ability to add tags to tickets if django-tagging is installed and in use. If django-tagging isn't being used, no change is visible to the user.
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
|