Skip to content

Commit

Permalink
Added block list editor support
Browse files Browse the repository at this point in the history
  • Loading branch information
dawoe committed Dec 8, 2020
1 parent 56b42bc commit c767bf9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Our.Umbraco.Nexu.Parsers/Core/BlockListEditorParser.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Our.Umbraco.Nexu.Parsers.Core
{
public class BlockListEditorParser : BaseTextParser
{
public override bool IsParserFor(string propertyEditorAlias)
{
return propertyEditorAlias.Equals("Umbraco.BlockList");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
<ItemGroup>
<Compile Include="BaseTextParser.cs" />
<Compile Include="Community\SEOCheckerParser.cs" />
<Compile Include="Core\BlockListEditorParser.cs" />
<Compile Include="Core\ContentPickerParser.cs" />
<Compile Include="Core\GridParser.cs" />
<Compile Include="Core\MediaPickerParser.cs" />
Expand Down

0 comments on commit c767bf9

Please sign in to comment.