9 lines
177 B
Python
9 lines
177 B
Python
from django.urls import path
|
|
|
|
from SubscribesApp.views import SubscribersView
|
|
|
|
urlpatterns = [
|
|
|
|
path('auto-subscribe/', SubscribersView.as_view(), name='auto_subscribe'),
|
|
|
|
] |