From f7439a89033d0d690a1ba345dc0b0b816f135b15 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Wed, 3 Mar 2021 14:41:07 +0000 Subject: [PATCH] New config settings to use for Unattended install user update --- .../Configuration/Models/GlobalSettings.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs b/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs index 45abc39268..b8c95aca12 100644 --- a/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs +++ b/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs @@ -94,6 +94,23 @@ namespace Umbraco.Cms.Core.Configuration.Models /// the Run level. /// public bool InstallUnattended { get; set; } = false; + + /// + /// Gets or sets a value to use for creating a user with a name for Unattended Installs + /// + public string UnattendedUserName { get; set; } = string.Empty; + + /// + /// Gets or sets a value to use for creating a user with an email for Unattended Installs + /// + public string UnattendedUserEmail { get; set; } = string.Empty; + + /// + /// Gets or sets a value to use for creating a user with a password for Unattended Installs + /// + public string UnattendedUserPassword { get; set; } = string.Empty; + + /// /// Gets or sets a value indicating whether to disable the election for a single server. ///