From 62423143bd0fbf70da61856e4f368bd53854a29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Knippers?= Date: Wed, 24 Aug 2022 16:09:48 +0200 Subject: [PATCH] Update appsettings-schema: remove {Member,User}Password from Umbraco:CMS They are located in Umbraco:CMS:Security and are read from that location. Setting any values in Umbraco:CMS does not actually work but intellisense shows up so the user thinks it will work. --- src/JsonSchema/AppSettings.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/JsonSchema/AppSettings.cs b/src/JsonSchema/AppSettings.cs index fb9db8387a..18d83b53a3 100644 --- a/src/JsonSchema/AppSettings.cs +++ b/src/JsonSchema/AppSettings.cs @@ -56,8 +56,6 @@ namespace JsonSchema public LoggingSettings? Logging { get; set; } - public MemberPasswordConfigurationSettings? MemberPassword { get; set; } - public NuCacheSettings? NuCache { get; set; } public RequestHandlerSettings? RequestHandler { get; set; } @@ -70,8 +68,6 @@ namespace JsonSchema public TypeFinderSettings? TypeFinder { get; set; } - public UserPasswordConfigurationSettings? UserPassword { get; set; } - public WebRoutingSettings? WebRouting { get; set; } public UmbracoPluginSettings? Plugins { get; set; }