2020-08-20 08:24:23 +01:00
|
|
|
|
using Umbraco.Core.Configuration.UmbracoSettings;
|
2020-03-16 14:02:08 +01:00
|
|
|
|
|
2020-08-20 22:18:50 +01:00
|
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-03-16 14:02:08 +01:00
|
|
|
|
{
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public class KeepAliveSettings : IKeepAliveSettings
|
2020-03-16 14:02:08 +01:00
|
|
|
|
{
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public bool DisableKeepAliveTask { get; set; } = false;
|
2020-03-18 11:29:29 +01:00
|
|
|
|
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public string KeepAlivePingUrl { get; set; } = "{umbracoApplicationUrl}/api/keepalive/ping";
|
2020-03-16 14:02:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|