storage yaratildi

This commit is contained in:
Husanjonazamov
2026-03-13 20:17:06 +05:00
commit 1c692b51b6
256 changed files with 8852 additions and 0 deletions

12
core/apps/vendors/urls.py vendored Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import include, path
from rest_framework.routers import DefaultRouter
from .views import CategoryView, ProductimageView, VendorproductView, VendorView, SectionView
router = DefaultRouter()
router.register("sections", SectionView, basename="sections")
router.register("categories", CategoryView, basename="categories")
router.register("vendors", VendorView, basename="vendors")
router.register("products", VendorproductView, basename="products")
router.register("product-images", ProductimageView, basename="product-images")
urlpatterns = [path("", include(router.urls))]