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,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";
}
}