Tool to index content items in Episerver Find. Makes it possible to index a single item or an item including it's descendents.
For the IndexContentInFind to work, you have to call AddIndexContentInFind
extension method in Startup.ConfigureServices
method.
services.AddIndexContentInFind();
or add it through the appsettings.json
{
"EPiServer": {
"CmsUI": {
"ProtectedModule": {
"Items": [
{ "Name": "Geta.Optimizely.IndexContentInFind" }
]
}
}
}
}