mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-09 16:15:12 +02:00
Addresses issue 20: when creating a new user, the signal that creates a UserSettings entry now creates some default settings. These are driven by settings.py so can be overridden per-install.
This commit is contained in:
@ -12,3 +12,18 @@ try:
|
||||
import tagging
|
||||
except ImportError:
|
||||
HAS_TAG_SUPPORT = False
|
||||
|
||||
try:
|
||||
DEFAULT_USER_SETTINGS = settings.HELPDESK_DEFAULT_SETTINGS
|
||||
except:
|
||||
DEFAULT_USER_SETTINGS = None
|
||||
|
||||
if type(DEFAULT_USER_SETTINGS) != type(dict()):
|
||||
DEFAULT_USER_SETTINGS = {
|
||||
'use_email_as_submitter': True,
|
||||
'email_on_ticket_assign': True,
|
||||
'email_on_ticket_change': True,
|
||||
'login_view_ticketlist': True,
|
||||
'email_on_ticket_apichange': True,
|
||||
'tickets_per_page': 25
|
||||
}
|
||||
|
Reference in New Issue
Block a user