Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/INestedContentPropertyIndexValueFactory.cs
Bjarke Berg d9f342bee7 Added missing property index value factories (#13819)
* Added missing PropertyIndexValueFactories, for Block Grid, Block List, Nested Content, Tags and added No-op for image picker, image cropper etc, where the content dont make any sense anyway.

Made it replace for block grid/list, nested content and tags

* Fixed tests

* Ensure raw-fields are the prefix

* Code clean up

* build fix

* Minor cleanup

* Fixed issue with published values / external index

---------

Co-authored-by: nikolajlauridsen <nikolajlauridsen@protonmail.ch>
2023-02-13 14:47:26 +01:00

6 lines
135 B
C#

namespace Umbraco.Cms.Core.PropertyEditors;
public interface INestedContentPropertyIndexValueFactory : IPropertyIndexValueFactory
{
}