More clean up of old configs

This commit is contained in:
Bjarke Berg
2020-09-14 09:01:57 +02:00
parent 2eee6d7386
commit 5b90a469e9
20 changed files with 3 additions and 279 deletions

View File

@@ -1,7 +0,0 @@
namespace Umbraco.Core.Configuration
{
public interface IIndexCreatorSettings
{
string LuceneDirectoryFactory { get; }
}
}

View File

@@ -1,7 +0,0 @@
namespace Umbraco.Core.Configuration
{
public interface INuCacheSettings
{
string BTreeBlockSize { get; }
}
}

View File

@@ -1,11 +1,9 @@
using Umbraco.Core.Configuration.UmbracoSettings;
namespace Umbraco.Core.Configuration.Models
{
public class KeepAliveSettings : IKeepAliveSettings
public class KeepAliveSettings
{
public bool DisableKeepAliveTask { get; set; } = false;
public bool DisableKeepAliveTask => false;
public string KeepAlivePingUrl { get; set; } = "{umbracoApplicationUrl}/api/keepalive/ping";
public string KeepAlivePingUrl => "{umbracoApplicationUrl}/api/keepalive/ping";
}
}

View File

@@ -1,7 +0,0 @@
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IBackOfficeSection
{
ITourSettings Tours { get; }
}
}

View File

@@ -1,8 +0,0 @@
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IKeepAliveSettings : IUmbracoConfigurationSection
{
bool DisableKeepAliveTask { get; }
string KeepAlivePingUrl { get; }
}
}

View File

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