tour plan uchun crud apilar qoshildi

This commit is contained in:
behruz-dev
2025-12-01 15:36:05 +05:00
parent 719368552f
commit bbb0e8cf16
3 changed files with 254 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ from core.apps.dashboard.views.pharmacy import PharmacyViewSet
from core.apps.dashboard.views.product import ProductViewSet
# factory
from core.apps.dashboard.views.factory import FactoryViewSet
# tour plan
from core.apps.dashboard.views.tour_plan import TourPlanViewSet
urlpatterns = [
# -------------- user --------------
@@ -64,5 +67,7 @@ router.register("place", PlaceViewSet)
router.register("pharmacy", PharmacyViewSet)
router.register("product", ProductViewSet)
router.register("factory", FactoryViewSet)
router.register("tour_plan", TourPlanViewSet)
urlpatterns += router.urls