udpates health check and service methods to be flexible for data integrity checks, fixes tests

This commit is contained in:
Shannon
2020-04-07 16:42:21 +10:00
parent ad698f9c19
commit 18d9ad3c73
12 changed files with 163 additions and 172 deletions

View File

@@ -0,0 +1,13 @@
namespace Umbraco.Core.Models
{
public class ContentDataIntegrityReportOptions
{
/// <summary>
/// Set to true to try to automatically resolve data integrity issues
/// </summary>
public bool FixIssues { get; set; }
// TODO: We could define all sorts of options for the data integrity check like what to check for, what to fix, etc...
// things like Tag data consistency, etc...
}
}