from django.urls import path from .views import PaymentStatusView, PaymentRefundListView, GoPayWebhookView urlpatterns = [ # Dotaz na stav platby (GET) path('api/payments/payment/', PaymentStatusView.as_view(), name='gopay-payment-status'), # Historie refundací (GET) path('api/payments/payment//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'), ]