Added: get children from parent w/ id, type

This commit is contained in:
Llewellyn D'souza
2022-02-16 15:41:27 +05:30
parent 9e0fd56300
commit 30fddfc8fd
2 changed files with 40 additions and 0 deletions

View File

@@ -11,4 +11,9 @@ router.post("/create-warehouse-schema", controller.createWarehouseSchema);
*/
router.post("/create-inventory-schema", controller.createInventorySchema);
/**
* @route /dashboard/get-children-from-parent
*/
router.post("/get-children-from-parent", controller.getChildrenFromParent);
module.exports = router;