mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
10 lines
251 B
Python
10 lines
251 B
Python
from django.dispatch import receiver
|
|
|
|
from pretix.base.signals import register_ticket_outputs
|
|
|
|
|
|
@receiver(register_ticket_outputs)
|
|
def register_ticket_outputs(sender, **kwargs):
|
|
from .ticketoutput import PdfTicketOutput
|
|
return PdfTicketOutput
|