0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Increased Post Revisions limit to 25

no issue
This commit is contained in:
Chris Raible 2023-05-05 21:46:50 +00:00
parent 832cee3005
commit 810b789419

View file

@ -36,7 +36,7 @@ const messages = {
}; };
const MOBILEDOC_REVISIONS_COUNT = 10; 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 POST_REVISIONS_INTERVAL_MS = 10 * 60 * 1000; // 10 minutes
const ALL_STATUSES = ['published', 'draft', 'scheduled', 'sent']; const ALL_STATUSES = ['published', 'draft', 'scheduled', 'sent'];