Files
hossein-por-shop/backend/blog/urls.py
T
2026-05-06 10:26:14 +03:30

8 lines
303 B
Python

from django.urls import path, re_path
from . import views
urlpatterns = [
path('all', views.AllBlogView.as_view(), name='product-chat-view'),
path('categories', views.AllBlogCategoryView.as_view()),
re_path(r'^(?P<slug>[\w\u0600-\u06FF\-]+)$', views.BlogView.as_view(), name='blog-view'),
]