mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +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
@ -89,6 +89,10 @@ These changes are visible throughout django-helpdesk
|
|||||||
- **HELPDESK_ANON_ACCESS_RAISES_404** If True, redirects user to a 404 page when attempting to reach ticket pages while not logged in, rather than redirecting to a login screen.
|
- **HELPDESK_ANON_ACCESS_RAISES_404** If True, redirects user to a 404 page when attempting to reach ticket pages while not logged in, rather than redirecting to a login screen.
|
||||||
|
|
||||||
**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