Cleaned up condig for Logging and Tours

This commit is contained in:
Bjarke Berg
2020-03-12 08:24:02 +01:00
parent e07c9abd58
commit f446e52d8f
20 changed files with 512 additions and 455 deletions

View File

@@ -2,6 +2,6 @@
{
public interface IBackOfficeSection
{
ITourSection Tours { get; }
ITourSettings Tours { get; }
}
}

View File

@@ -2,7 +2,7 @@
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface ILoggingSection : IUmbracoConfigurationSection
public interface ILoggingSettings : IUmbracoConfigurationSection
{
int MaxLogAge { get; }
}

View File

@@ -1,6 +1,6 @@
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface ITourSection
public interface ITourSettings
{
bool EnableTours { get; }
}

View File

@@ -4,15 +4,11 @@ namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IUmbracoSettingsSection : IUmbracoConfigurationSection
{
IBackOfficeSection BackOffice { get; }
IContentSection Content { get; }
ISecuritySection Security { get; }
IRequestHandlerSection RequestHandler { get; }
ILoggingSection Logging { get; }
IWebRoutingSection WebRouting { get; }