mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-09 00:04:50 +02:00
Enable attachments by default
In order to not break existing django-helpdesk installations upon upgrade.
This commit is contained in:
@ -57,9 +57,13 @@ HELPDESK_STAFF_VIEW_PROTECTOR = getattr(settings,
|
||||
lambda _: None)
|
||||
|
||||
# Enable ticket and Email attachments
|
||||
#
|
||||
# Caution! Set this to False, unless you have secured access to
|
||||
# the uploaded files. Otherwise anyone on the Internet will be
|
||||
# able to download your ticket attachments.
|
||||
HELPDESK_ENABLE_ATTACHMENTS = getattr(settings,
|
||||
'HELPDESK_ENABLE_ATTACHMENTS',
|
||||
False)
|
||||
True)
|
||||
|
||||
# Enable the Dependencies field on ticket view
|
||||
HELPDESK_ENABLE_DEPENDENCIES_ON_TICKET = getattr(settings,
|
||||
|
Reference in New Issue
Block a user