mirror of
https://github.com/pretix/pretix.git
synced 2026-09-13 16:14:40 +00:00
Add payment provider PayPal
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from django.dispatch import receiver
|
||||
|
||||
from pretix.base.signals import register_payment_providers
|
||||
|
||||
from .payment import Paypal
|
||||
|
||||
|
||||
@receiver(register_payment_providers)
|
||||
def register_payment_provider(sender, **kwargs):
|
||||
return Paypal
|
||||
Reference in New Issue
Block a user