This commit is contained in:
2025-10-02 00:54:34 +02:00
commit 84b34c9615
200 changed files with 42048 additions and 0 deletions

12
backend/product/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .views import ProductViewSet, EventProductViewSet
router = DefaultRouter()
router.register(r'products', ProductViewSet, basename='products')
router.register(r'event-products', EventProductViewSet, basename='event-products')
urlpatterns = [
path('', include(router.urls)),
]