JourneyJoker/payment/urls.py

13 lines
422 B
Python
Raw Normal View History

from django.urls import path, include
2021-04-18 14:46:57 +00:00
from .views import PaymentStatusView
2021-03-23 18:23:04 +00:00
app_name = "payment"
urlpatterns = [
2021-03-22 17:42:07 +00:00
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"),
2021-04-18 14:46:57 +00:00
path('status/<slug:uuid>/', PaymentStatusView.as_view(), name="status"),
]