Files
vontor-cz/backend/thirdparty/gopay/urls.py
2025-11-04 02:16:17 +01:00

11 lines
521 B
Python

from django.urls import path
from .views import PaymentStatusView, PaymentRefundListView, GoPayWebhookView
urlpatterns = [
# Dotaz na stav platby (GET)
path('api/payments/payment/<int:pk>', PaymentStatusView.as_view(), name='gopay-payment-status'),
# Historie refundací (GET)
path('api/payments/payment/<int:pk>/refunds', PaymentRefundListView.as_view(), name='gopay-payment-refunds'),
# Webhook od GoPay (HTTP GET s ?id=...)
path('api/payments/gopay/webhook', GoPayWebhookView.as_view(), name='gopay-webhook'),
]