mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
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
|