We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fa9dbe commit cf5e8e6Copy full SHA for cf5e8e6
1 file changed
mailing/urls.py
@@ -1,11 +1,10 @@
1
from django.urls import path
2
3
-from mailing.views import some_task, MailingSchemaView, template_fields, SendMailView
+from mailing.views import MailingSchemaView, template_fields, SendMailView
4
5
app_name = "mailing"
6
7
urlpatterns = [
8
- path("", some_task),
9
path("mail", MailingSchemaView.as_view()),
10
path("template_fileds/<int:schema_id>/", template_fields, name="template_fields"),
11
path("send_email", SendMailView.as_view(), name="send_mail"),
0 commit comments