From a1f93f84e241e82d23b1a145fbfee945cc61777e Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Tue, 2 Nov 2021 11:59:34 +0100 Subject: [PATCH] changed default values --- .../Models/ContentVersionCleanupPolicySettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Configuration/Models/ContentVersionCleanupPolicySettings.cs b/src/Umbraco.Core/Configuration/Models/ContentVersionCleanupPolicySettings.cs index 02724197017e..bd460058eb3b 100644 --- a/src/Umbraco.Core/Configuration/Models/ContentVersionCleanupPolicySettings.cs +++ b/src/Umbraco.Core/Configuration/Models/ContentVersionCleanupPolicySettings.cs @@ -8,8 +8,8 @@ namespace Umbraco.Cms.Core.Configuration.Models public class ContentVersionCleanupPolicySettings { private const bool StaticEnableCleanup = false; - private const int StaticKeepAllVersionsNewerThanDays = 2; - private const int StaticKeepLatestVersionPerDayForDays = 30; + private const int StaticKeepAllVersionsNewerThanDays = 7; + private const int StaticKeepLatestVersionPerDayForDays = 90; /// /// Gets or sets a value indicating whether or not the cleanup job should be executed.