Files
shoppy/tpv/urls.py
T
2024-03-24 20:41:33 +01:00

13 lines
470 B
Python

from django.urls import path
from tpv.views import transaction_created, webhook, payment_accepted, payment_rejected
app_name = "tpv"
urlpatterns = [
path("transaction/<str:transaction>/", transaction_created, name="order_created"),
path("transaction/<str:transaction>/webhook/", webhook, name="webhook"),
path("transaction/<str:transaction>/ok/", payment_accepted, name="ok"),
path("transaction/<str:transaction>/ko/", payment_rejected, name="ko"),
]