From 810b78941952a3c82e1838456a3f2ba697609a05 Mon Sep 17 00:00:00 2001 From: Chris Raible Date: Fri, 5 May 2023 21:46:50 +0000 Subject: [PATCH] Increased Post Revisions limit to 25 no issue --- ghost/core/core/server/models/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/core/core/server/models/post.js b/ghost/core/core/server/models/post.js index d6fa6f4d9b..ed0b7956c4 100644 --- a/ghost/core/core/server/models/post.js +++ b/ghost/core/core/server/models/post.js @@ -36,7 +36,7 @@ const messages = { }; const MOBILEDOC_REVISIONS_COUNT = 10; -const POST_REVISIONS_COUNT = 10; +const POST_REVISIONS_COUNT = 25; const POST_REVISIONS_INTERVAL_MS = 10 * 60 * 1000; // 10 minutes const ALL_STATUSES = ['published', 'draft', 'scheduled', 'sent'];