Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/KeepAliveSettings.cs
Andy Butland e3a44c6717 Moved configuration setting POCOs into Umbraco.Core and adjusted references.
Amended injection of some settings to use IOptionsSnapshot.
2020-08-20 22:18:50 +01:00

12 lines
336 B
C#

using Umbraco.Core.Configuration.UmbracoSettings;
namespace Umbraco.Core.Configuration.Models
{
public class KeepAliveSettings : IKeepAliveSettings
{
public bool DisableKeepAliveTask { get; set; } = false;
public string KeepAlivePingUrl { get; set; } = "{umbracoApplicationUrl}/api/keepalive/ping";
}
}