mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
7 lines
188 B
Python
7 lines
188 B
Python
import django.dispatch
|
|
|
|
# create a signal for *TicketForm
|
|
new_ticket_done = django.dispatch.Signal()
|
|
|
|
# create a signal for ticket_update view
|
|
update_ticket_done = django.dispatch.Signal() |