gault-millau/apps/comment/urls/back.py
Виктор Гладких 48ca13803e Pre test permission comment
2019-10-09 14:44:01 +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:pk>/', views.CommentRUDView.as_view(), name='comment-crud'),
]