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