forked from CGM_Public/pretix_original
Added two new exporters
This commit is contained in:
9
src/pretix/plugins/checkinlists/signals.py
Normal file
9
src/pretix/plugins/checkinlists/signals.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.dispatch import receiver
|
||||
|
||||
from pretix.base.signals import register_data_exporters
|
||||
|
||||
|
||||
@receiver(register_data_exporters, dispatch_uid="export_checkinlist_csv")
|
||||
def register_csv(sender, **kwargs):
|
||||
from .exporters import CSVCheckinList
|
||||
return CSVCheckinList
|
||||
Reference in New Issue
Block a user