fixes name, refactors a lot of serverValidationManager so it's structure is maintainable, moves more logic there from directives so it can be tested more easily, finally got the first result working.

This commit is contained in:
Shannon
2020-06-30 19:12:21 +10:00
parent 459904ffdd
commit 88700e9707
10 changed files with 459 additions and 399 deletions

View File

@@ -7,9 +7,9 @@ namespace Umbraco.Core.Models.Blocks
/// <summary>
/// Data converter for the block list property editor
/// </summary>
public class BlocListEditorDataConverter : BlockEditorDataConverter
public class BlockListEditorDataConverter : BlockEditorDataConverter
{
public BlocListEditorDataConverter() : base(Constants.PropertyEditors.Aliases.BlockList)
public BlockListEditorDataConverter() : base(Constants.PropertyEditors.Aliases.BlockList)
{
}