mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
7654de9d28
be the real name for this project IMHO.
15 lines
253 B
Python
15 lines
253 B
Python
|
|
"""
|
|
Default settings for django-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
|