gault-millau/apps/comment/urls/back.py
Виктор Гладких 7ed976dec0 Test
2019-10-09 16:28:14 +03:00

12 lines
285 B
Python

"""Back comment URLs"""
from django.urls import path
from comment.views import back as views
app_name = 'comment'
urlpatterns = [
path('', views.CommentLstView.as_view(), name='comment-list-create'),
path('<int:id>/', views.CommentRUDView.as_view(), name='comment-crud'),
]