Update settings documentation for Ticket PRIORITY_CHOICES customization

This commit is contained in:
Sam Splunks 2024-01-24 10:58:41 +01:00 committed by GitHub
parent 3e791d98fa
commit 7501e7fcd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,6 +176,21 @@ Options that change ticket updates
**Default:** ``HELPDESK_STAFF_ONLY_TICKET_CC = False``
Options that change ticket properties
-------------------------------------
- **HELPDESK_TICKET_PRIORITY_CHOICES** Customize the priority choices for all tickets.
The **default** is below::
HELPDESK_TICKET_PRIORITY_CHOICES = (
(1, _('1. Critical')),
(2, _('2. High')),
(3, _('3. Normal')),
(4, _('4. Low')),
(5, _('5. Very Low')),
)
Staff Ticket Creation Settings
------------------------------