aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-11-26 17:03:16 +0000
committerMatthew Lemon <y@yulqen.org>2024-11-26 17:03:16 +0000
commit04e490c0b0b65a21c531ac50a5ba321c79e14fa2 (patch)
tree428df0f34826b8aff22d9b37708ef286d3115015 /alphabetlearning/payments/urls.py
parent78fd102b49f339af5432c2f0bebfab7ff9ac39bd (diff)
Got the basic form anbd privacy policy in place
Diffstat (limited to 'alphabetlearning/payments/urls.py')
-rw-r--r--alphabetlearning/payments/urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/alphabetlearning/payments/urls.py b/alphabetlearning/payments/urls.py
index 9bedaf7..12f445d 100644
--- a/alphabetlearning/payments/urls.py
+++ b/alphabetlearning/payments/urls.py
@@ -3,6 +3,7 @@ from django.urls import path
from . import views
from .views import CancelView
from .views import SuccessView
+from .views import privacy_policy # Import the new view
app_name = "payments"
@@ -20,4 +21,7 @@ urlpatterns = [
path("landing/", views.ProductLandingPageView.as_view(), name="landing"),
path("delete-cart-item/<int:pk>", views. DeleteCartItem.as_view(), name="delete_cart_item"),
path("webhooks/stripe/", views.stripe_webhook, name="stripe-webhook"),
+ path("email_signup/", views.email_signup, name="email_signup"),
+ path("success_email_signup/", views.SuccessEmailSignupView.as_view(), name="success_email_signup"),
+ path('privacy-policy/', privacy_policy, name='privacy_policy'), # Add this line
]