inital commit

This commit is contained in:
2026-04-10 20:51:43 -05:00
parent cd1f2eae29
commit 562a8525d0
85 changed files with 4820 additions and 2 deletions

9
payment/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from .views import CreateMockPaymentIntentView, MockStripeWebhookView, PaymentStatusView
urlpatterns = [
path("intents/", CreateMockPaymentIntentView.as_view(), name="payment_intent_create"),
path("<int:payment_id>/status/", PaymentStatusView.as_view(), name="payment_status"),
path("webhooks/stripe/", MockStripeWebhookView.as_view(), name="stripe_webhook_mock"),
]