"""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//', common.SubscribeInfoView.as_view(), name='check-code'), path('unsubscribe/', common.UnsubscribeAuthUserView.as_view(), name='unsubscribe-auth'), path('unsubscribe//', common.UnsubscribeView.as_view(), name='unsubscribe'), ]