diff options
Diffstat (limited to 'pyblackbird_cc/payments/urls.py')
-rw-r--r-- | pyblackbird_cc/payments/urls.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/pyblackbird_cc/payments/urls.py b/pyblackbird_cc/payments/urls.py deleted file mode 100644 index 52e2451..0000000 --- a/pyblackbird_cc/payments/urls.py +++ /dev/null @@ -1,22 +0,0 @@ -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("webhook/", views.webhook, name="webhook"), -] |