mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-14 18:18:36 +02:00
Moved all project files under a "helpdesk" directory. Should make it easier to use setup.py / pypi / whatever in the future.
This commit is contained in:
14
helpdesk/settings.py
Normal file
14
helpdesk/settings.py
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
"""
|
||||
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
|
Reference in New Issue
Block a user