Add manual payments

This commit is contained in:
Raphael Michel
2018-06-24 16:14:29 +02:00
parent 5e7027647a
commit 0d1643da66
5 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from django.dispatch import receiver
from pretix.base.signals import register_payment_providers
from .payment import ManualPayment
@receiver(register_payment_providers, dispatch_uid="payment_manual")
def register_payment_provider(sender, **kwargs):
return ManualPayment