Revert #13281 and only set UpgradeUnattended value to true for new projects (#14764)

* Revert "Change default UpgradeUnattended value to true (#13281)"

This reverts commit e5d6372dbd.

* Set UpgradeUnattended value to true for new projects
This commit is contained in:
Ronald Barendse
2023-09-04 10:49:19 +02:00
committed by Bjarke Berg
parent 155efb8019
commit 003ac02009
2 changed files with 4 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ namespace Umbraco.Cms.Core.Configuration.Models;
public class UnattendedSettings public class UnattendedSettings
{ {
private const bool StaticInstallUnattended = false; private const bool StaticInstallUnattended = false;
private const bool StaticUpgradeUnattended = true; private const bool StaticUpgradeUnattended = false;
/// <summary> /// <summary>
/// Gets or sets a value indicating whether unattended installs are enabled. /// Gets or sets a value indicating whether unattended installs are enabled.

View File

@@ -33,6 +33,9 @@
"ContentVersionCleanupPolicy": { "ContentVersionCleanupPolicy": {
"EnableCleanup": true "EnableCleanup": true
} }
},
"Unattended": {
"UpgradeUnattended": true
} }
} }
} }