mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
11 lines
278 B
Python
11 lines
278 B
Python
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
|