mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-16 19:01:21 +02:00
default HELPDESK_STAFF_ONLY_TICKET_OWNERS to false for tests
This commit is contained in:
@ -485,7 +485,7 @@ def view_ticket(request, ticket_id):
|
|||||||
"checklist_form": checklist_form,
|
"checklist_form": checklist_form,
|
||||||
"customfields_form": customfields_form,
|
"customfields_form": customfields_form,
|
||||||
"assignable_users": get_assignable_users(
|
"assignable_users": get_assignable_users(
|
||||||
settings.HELPDESK_STAFF_ONLY_TICKET_OWNERS
|
bool(getattr(settings, "HELPDESK_STAFF_ONLY_TICKET_OWNERS", False))
|
||||||
),
|
),
|
||||||
**extra_context_kwargs,
|
**extra_context_kwargs,
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user