mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-05 21:49:24 +01:00
Rename USE_SERVERSIDE_PROCESSING to HELPDESK_USE_SERVERSIDE_PROCESSING for consistency, correctly include local project override, and add documentation
This commit is contained in:
parent
b8f585dc03
commit
625a8e85f0
@ -90,6 +90,10 @@ These changes are visible throughout django-helpdesk
|
|||||||
|
|
||||||
**Default:** ``HELPDESK_ANON_ACCESS_RAISES_404 = False``
|
**Default:** ``HELPDESK_ANON_ACCESS_RAISES_404 = False``
|
||||||
|
|
||||||
|
- **HELPDESK_USE_SERVERSIDE_PROCESSING** If True, may improve performance by utilizing server-side processing of the full ticket list whenever performing queries on the ticket list. Set to False to restore the "classic" functionality using javascript.
|
||||||
|
|
||||||
|
**Default:** ``HELPDESK_USE_SERVERSIDE_PROCESSING = True``
|
||||||
|
|
||||||
|
|
||||||
Options shown on public pages
|
Options shown on public pages
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
@ -151,4 +151,5 @@ HELPDESK_ENABLE_PER_QUEUE_STAFF_PERMISSION = getattr(
|
|||||||
|
|
||||||
|
|
||||||
# Asynchronous Datatables - Optional
|
# Asynchronous Datatables - Optional
|
||||||
USE_SERVERSIDE_PROCESSING = True
|
HELPDESK_USE_SERVERSIDE_PROCESSING = getattr(
|
||||||
|
settings, 'HELPDESK_USE_SERVERSIDE_PROCESSING', True)
|
||||||
|
Loading…
Reference in New Issue
Block a user