From c3eede548c997819281bac1a97004a67788eaa29 Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Tue, 1 Sep 2020 22:14:19 +0200 Subject: [PATCH] Added comment ot POST-only url. --- lostplaces/lostplaces_app/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lostplaces/lostplaces_app/urls.py b/lostplaces/lostplaces_app/urls.py index d5d7b15..d91ddaf 100644 --- a/lostplaces/lostplaces_app/urls.py +++ b/lostplaces/lostplaces_app/urls.py @@ -22,5 +22,6 @@ urlpatterns = [ path('place/update//', PlaceUpdateView.as_view(), name='place_edit'), path('place/delete//', PlaceDeleteView.as_view(), name='place_delete'), path('place/', PlaceListView.as_view(), name='place_list'), + # POST-only URL for tag submission path('place/tag/', PlaceTagSubmitView.as_view(), name='place_tag_submit'), ]