12 lines
567 B
Python
12 lines
567 B
Python
"""Notification app common urlconf."""
|
|
from django.urls import path
|
|
from notification.views import common
|
|
|
|
|
|
urlpatterns = [
|
|
path('subscribe/', common.SubscribeView.as_view(), name='subscribe'),
|
|
path('subscribe-info/', common.SubscribeInfoAuthUserView.as_view(), name='check-code-auth'),
|
|
path('subscribe-info/<code>/', common.SubscribeInfoView.as_view(), name='check-code'),
|
|
path('unsubscribe/', common.UnsubscribeAuthUserView.as_view(), name='unsubscribe-auth'),
|
|
path('unsubscribe/<code>/', common.UnsubscribeView.as_view(), name='unsubscribe'),
|
|
] |