Skip to content

Commit cf5e8e6

Browse files
committed
urlpatterns fix
1 parent 1fa9dbe commit cf5e8e6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mailing/urls.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
from django.urls import path
22

3-
from mailing.views import some_task, MailingSchemaView, template_fields, SendMailView
3+
from mailing.views import MailingSchemaView, template_fields, SendMailView
44

55
app_name = "mailing"
66

77
urlpatterns = [
8-
path("", some_task),
98
path("mail", MailingSchemaView.as_view()),
109
path("template_fileds/<int:schema_id>/", template_fields, name="template_fields"),
1110
path("send_email", SendMailView.as_view(), name="send_mail"),

0 commit comments

Comments
 (0)