mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-04 17:05:36 +02:00
8 lines
189 B
Python
8 lines
189 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()
|