Merge pull request #68 from Danakcorp/mrtz

populate shipping cost
This commit is contained in:
morteza-mortezai
2025-11-29 14:38:20 +03:30
committed by GitHub
+5 -1
View File
@@ -20,7 +20,11 @@ class CartRepository extends BaseRepository<ICart> {
})
.populate({
path: "items.variant",
populate: ["color", "size", "meterage", "warranty", "shop"],
populate: [
{ path: "warranty" },
{ path: "shop" },
{ path: "themeValue" },
],
});
}