@strapi/content-manager 0.0.0-experimental.c3e9d4b26f9fd3d9eb530b5c11f9baa1d09b13ad → 0.0.0-experimental.dd3311938ac827f1fa8560c8840a9a394f5896c0
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.mjs
CHANGED
@@ -484,6 +484,9 @@ const createLifecyclesService = ({ strapi: strapi2 }) => {
|
|
484
484
|
if (context.action !== "create" && context.action !== "update" && context.action !== "clone" && context.action !== "publish" && context.action !== "unpublish" && context.action !== "discardDraft") {
|
485
485
|
return next();
|
486
486
|
}
|
487
|
+
if (context.action === "update" && strapi2.requestContext.get()?.request.url.endsWith("/actions/publish")) {
|
488
|
+
return next();
|
489
|
+
}
|
487
490
|
const contentTypeUid = context.contentType.uid;
|
488
491
|
if (!contentTypeUid.startsWith("api::")) {
|
489
492
|
return next();
|