9 lines
272 B
Python
9 lines
272 B
Python
from django.urls import path
|
|
|
|
from apps.newsletter.views import ConfirmView, SubscribeView
|
|
|
|
urlpatterns = [
|
|
path("subscribe/", SubscribeView.as_view(), name="newsletter_subscribe"),
|
|
path("confirm/<str:token>/", ConfirmView.as_view(), name="newsletter_confirm"),
|
|
]
|