10 lines
288 B
Python
10 lines
288 B
Python
from django.urls import path
|
|
|
|
from engine.vibes_auth.emailing.views import TrackingView, UnsubscribeView
|
|
|
|
app_name = "emailing"
|
|
|
|
urlpatterns = [
|
|
path("unsubscribe/", UnsubscribeView.as_view(), name="unsubscribe"),
|
|
path("track/open/", TrackingView.as_view(), name="track-open"),
|
|
]
|