aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/urls.py
blob: b782bdc71f9f3e403233f5bb41db4bacc2a7f1a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from django.urls import path

from . import views
from .views import CancelView
from .views import SuccessView

app_name = "payments"

urlpatterns = [
    path("checkout/", views.checkout, name="checkout"),
    path("cart/", views.cart_detail, name="cart_detail"),
    path("success/", SuccessView.as_view(), name="success"),
    path("cancel/", CancelView.as_view(), name="cancel"),
    path(
        "create-checkout-session/<int:pk>/",
        views.CreateCheckoutSessionView.as_view(),
        name="create-checkout-session",
    ),
    path("add-to-card/<int:resource_id>", views.add_to_cart, name="add_to_cart"),
    path("landing/", views.ProductLandingPageView.as_view(), name="landing"),
    path("webhooks/stripe/", views.stripe_webhook, name="stripe-webhook"),
]