mirror of
https://github.com/pretix/pretix.git
synced 2026-08-22 12:42:00 +00:00
11 lines
245 B
Python
11 lines
245 B
Python
from django.dispatch import receiver
|
|
|
|
from pretix.base.signals import register_payment_providers
|
|
|
|
from .payment import BankTransfer
|
|
|
|
|
|
@receiver(register_payment_providers)
|
|
def register_payment_provider(sender, **kwargs):
|
|
return BankTransfer
|