2020-08-20 22:18:50 +01:00
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-03-16 14:02:08 +01:00
|
|
|
{
|
2020-09-14 09:01:57 +02:00
|
|
|
public class KeepAliveSettings
|
2020-03-16 14:02:08 +01:00
|
|
|
{
|
2020-10-30 17:19:01 +01:00
|
|
|
public bool DisableKeepAliveTask { get; set; } = false;
|
2020-03-18 11:29:29 +01:00
|
|
|
|
2020-09-14 09:01:57 +02:00
|
|
|
public string KeepAlivePingUrl => "{umbracoApplicationUrl}/api/keepalive/ping";
|
2020-03-16 14:02:08 +01:00
|
|
|
}
|
|
|
|
|
}
|