10 lines
248 B
C#
10 lines
248 B
C#
namespace Umbraco.Core.Configuration.Models
|
|
{
|
|
public class KeepAliveSettings
|
|
{
|
|
public bool DisableKeepAliveTask { get; set; } = false;
|
|
|
|
public string KeepAlivePingUrl => "{umbracoApplicationUrl}/api/keepalive/ping";
|
|
}
|
|
}
|