More clean up of old configs
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IIndexCreatorSettings
|
||||
{
|
||||
string LuceneDirectoryFactory { get; }
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface INuCacheSettings
|
||||
{
|
||||
string BTreeBlockSize { get; }
|
||||
}
|
||||
}
|
||||
@@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Umbraco.Core.Configuration.UmbracoSettings
|
||||
{
|
||||
public interface IBackOfficeSection
|
||||
{
|
||||
ITourSettings Tours { get; }
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
namespace Umbraco.Core.Configuration.UmbracoSettings
|
||||
{
|
||||
public interface IKeepAliveSettings : IUmbracoConfigurationSection
|
||||
{
|
||||
bool DisableKeepAliveTask { get; }
|
||||
string KeepAlivePingUrl { get; }
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Umbraco.Core.Configuration.UmbracoSettings
|
||||
{
|
||||
public interface ITourSettings
|
||||
{
|
||||
bool EnableTours { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user