Added ability to turn of KB (my business doesn't need it)

This commit is contained in:
Joshua Jonah
2011-06-09 11:24:33 -04:00
parent 9cad876f71
commit e73f45e4f6
4 changed files with 55 additions and 46 deletions

View File

@ -27,3 +27,6 @@ if type(DEFAULT_USER_SETTINGS) != type(dict()):
'email_on_ticket_apichange': True,
'tickets_per_page': 25
}
# show knowledgebase links?
HELPDESK_KB_ENABLED = getattr(settings, 'HELPDESK_KB_ENABLED', True)