strapi-cache 1.8.2-rc.2 → 1.8.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 +1 -4
- package/dist/server/index.mjs +1 -4
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -714,10 +714,7 @@ const purgeRoute = [
|
|
|
714
714
|
{
|
|
715
715
|
name: "plugin::content-manager.hasPermissions",
|
|
716
716
|
config: {
|
|
717
|
-
actions: [
|
|
718
|
-
"plugin::strapi-cache.purge-cache",
|
|
719
|
-
"plugin::strapi-cache.view-settings"
|
|
720
|
-
]
|
|
717
|
+
actions: ["plugin::strapi-cache.purge-cache"]
|
|
721
718
|
}
|
|
722
719
|
}
|
|
723
720
|
]
|
package/dist/server/index.mjs
CHANGED
|
@@ -710,10 +710,7 @@ const purgeRoute = [
|
|
|
710
710
|
{
|
|
711
711
|
name: "plugin::content-manager.hasPermissions",
|
|
712
712
|
config: {
|
|
713
|
-
actions: [
|
|
714
|
-
"plugin::strapi-cache.purge-cache",
|
|
715
|
-
"plugin::strapi-cache.view-settings"
|
|
716
|
-
]
|
|
713
|
+
actions: ["plugin::strapi-cache.purge-cache"]
|
|
717
714
|
}
|
|
718
715
|
}
|
|
719
716
|
]
|
package/package.json
CHANGED