* 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>
9 lines
182 B
C#
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; }
|
|
}
|