Updated healthchecks to show a link to documentation instead of trying to fix something that can often not be fixed automatically.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace Umbraco.Core.HealthChecks
|
||||
{
|
||||
/// <summary>
|
||||
/// Metadata attribute for health check notification methods
|
||||
/// </summary>
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
||||
public sealed class HealthCheckNotificationMethodAttribute : Attribute
|
||||
{
|
||||
public HealthCheckNotificationMethodAttribute(string alias)
|
||||
{
|
||||
Alias = alias;
|
||||
}
|
||||
|
||||
public string Alias { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user