Files
Umbraco-CMS/src/Umbraco.Core/DeliveryApi/SelectorOption.cs
Kenn Jacobsen f804c8c209 Handle culture variance and add more options for indexing fields (#14185)
* Handle culture variance and add more options for indexing fields

* Workaround for missing DB on install

* Add a document per language to the delivery API content index

* Filters and Selectors must be able to match multiple values (as OR)

* A few review changes

* Change TODO for a note

* Workaround for lazily resolved field value types in Examine

* Make removal tracking more granular to cover both single and all culture deletion

---------

Co-authored-by: Elitsa <elm@umbraco.dk>
2023-05-10 15:48:00 +02:00

9 lines
182 B
C#

namespace Umbraco.Cms.Core.DeliveryApi;
public sealed class SelectorOption
{
public required string FieldName { get; set; }
public required string[] Values { get; set; }
}