Moved files and introduced IMarkdownToHtmlConverter to avoid packages to handle markdown in core

Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-12-04 13:01:58 +01:00
parent 05dc597fc2
commit 21e3cf0887
18 changed files with 63 additions and 42 deletions

View File

@@ -0,0 +1,14 @@
using System.Threading;
using System.Threading.Tasks;
using Umbraco.Core.Composing;
using Umbraco.Infrastructure.HealthCheck;
namespace Umbraco.Web.HealthCheck.NotificationMethods
{
public interface IHealthCheckNotificationMethod : IDiscoverable
{
bool Enabled { get; }
Task SendAsync(HealthCheckResults results);
}
}