mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
Add manual payments
This commit is contained in:
10
src/pretix/plugins/manualpayment/signals.py
Normal file
10
src/pretix/plugins/manualpayment/signals.py
Normal 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
|
||||
Reference in New Issue
Block a user