@fourlights/strapi-plugin-deep-populate 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server/index.js +2 -2
- package/dist/server/index.mjs +2 -2
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -18773,7 +18773,7 @@ async function _populate({
|
|
|
18773
18773
|
continue;
|
|
18774
18774
|
}
|
|
18775
18775
|
if (__deny?.relations?.includes(attr.target)) {
|
|
18776
|
-
newPopulate[attrName] =
|
|
18776
|
+
newPopulate[attrName] = false;
|
|
18777
18777
|
continue;
|
|
18778
18778
|
}
|
|
18779
18779
|
}
|
|
@@ -18783,7 +18783,7 @@ async function _populate({
|
|
|
18783
18783
|
continue;
|
|
18784
18784
|
}
|
|
18785
18785
|
if (__deny?.components?.includes(attr.component)) {
|
|
18786
|
-
newPopulate[attrName] =
|
|
18786
|
+
newPopulate[attrName] = false;
|
|
18787
18787
|
continue;
|
|
18788
18788
|
}
|
|
18789
18789
|
}
|
package/dist/server/index.mjs
CHANGED
|
@@ -18746,7 +18746,7 @@ async function _populate({
|
|
|
18746
18746
|
continue;
|
|
18747
18747
|
}
|
|
18748
18748
|
if (__deny?.relations?.includes(attr.target)) {
|
|
18749
|
-
newPopulate[attrName] =
|
|
18749
|
+
newPopulate[attrName] = false;
|
|
18750
18750
|
continue;
|
|
18751
18751
|
}
|
|
18752
18752
|
}
|
|
@@ -18756,7 +18756,7 @@ async function _populate({
|
|
|
18756
18756
|
continue;
|
|
18757
18757
|
}
|
|
18758
18758
|
if (__deny?.components?.includes(attr.component)) {
|
|
18759
|
-
newPopulate[attrName] =
|
|
18759
|
+
newPopulate[attrName] = false;
|
|
18760
18760
|
continue;
|
|
18761
18761
|
}
|
|
18762
18762
|
}
|
package/package.json
CHANGED