integrace api, stripe, vytvoření commecre app

This commit is contained in:
2025-10-05 23:41:14 +02:00
parent f5cf8bbaa7
commit 10796dcb31
26 changed files with 436 additions and 140 deletions

View File

@@ -1,6 +1,6 @@
from django.urls import path
from .views import StripeCheckoutCZKView
from .views import CreateCheckoutSessionView
urlpatterns = [
path('checkout/', StripeCheckoutCZKView.as_view(), name='stripe-checkout-czk'),
path("orders/create-checkout/", CreateCheckoutSessionView.as_view(), name="create-checkout"),
]