mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Add payment provider PayPal
This commit is contained in:
10
src/pretix/plugins/paypal/signals.py
Normal file
10
src/pretix/plugins/paypal/signals.py
Normal file
@@ -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