Files
hossein-por-shop/backend/blog/urls.py
T
2026-05-03 18:41:51 +03:30

8 lines
276 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('all', views.AllBlogView.as_view(), name='product-chat-view'),
path('categories', views.AllBlogCategoryView.as_view()),
path('<int:slug>', views.BlogView.as_view(), name='product-chat-view'),
]