@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.js
CHANGED
@@ -510,6 +510,9 @@ const createLifecyclesService = ({ strapi: strapi2 }) => {
|
|
510
510
|
if (context.action !== "create" && context.action !== "update" && context.action !== "clone" && context.action !== "publish" && context.action !== "unpublish" && context.action !== "discardDraft") {
|
511
511
|
return next();
|
512
512
|
}
|
513
|
+
if (context.action === "update" && strapi2.requestContext.get()?.request.url.endsWith("/actions/publish")) {
|
514
|
+
return next();
|
515
|
+
}
|
513
516
|
const contentTypeUid = context.contentType.uid;
|
514
517
|
if (!contentTypeUid.startsWith("api::")) {
|
515
518
|
return next();
|