mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2024-11-17 06:39:26 +08:00
14 lines
478 B
Python
14 lines
478 B
Python
from django.urls import include, path
|
|
from rest_framework import routers
|
|
from . import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'products', views.ProductViewSet)
|
|
|
|
# Wire up our API using automatic URL routing.
|
|
# Additionally, we include login URLs for the browsable API.
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
path('logs/', views.LogViewSet.as_view()),
|
|
path('lowest_stock_product/', views.LeastStockProductViewSet.as_view())
|
|
]
|