JourneyJoker/payment/urls.py
Klaus-Uwe Mitterer a3d31c5cc3 Implement PDF generator
Improve mail view
Implement voucher generation
2021-05-31 07:20:27 +02:00

12 lines
422 B
Python

from django.urls import path, include
from .views import PaymentStatusView
app_name = "payment"
urlpatterns = [
path('gateways/paypal/', include("payment.paypal.urls"), name="paypal"),
path('gateways/sepa/', include("payment.sepa.urls"), name="sepa"),
path('gateways/voucher/', include("payment.voucher.urls"), name="voucher"),
path('status/<slug:uuid>/', PaymentStatusView.as_view(), name="status"),
]