Files
vikileo-shop/system/comments/urls.py
2024-05-10 09:38:31 +03:00

8 lines
289 B
Python

from django.urls import path
from system.comments import views
urlpatterns = [
#path('articles/<str:slug>/comments', views.CommentView.as_view(), name='comment-article'),
#path('articles/<str:slug>/comments/<int:id>', views.DeleteCommentView.as_view(), name='comment-delete'),
]