You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to index attachments, you need to install the [ElasticSearch Attachment Plugin](https://github.com/elastic/elasticsearch-mapper-attachments).
383
+
Then, you can add the following to your `Settings.yaml`:
384
+
385
+
```
386
+
TYPO3:
387
+
TYPO3CR:
388
+
Search:
389
+
defaultConfigurationPerType:
390
+
'TYPO3\Media\Domain\Model\Asset':
391
+
elasticSearchMapping:
392
+
type: attachment
393
+
include_in_all: true
394
+
indexing: ${Indexing.indexAsset(value)}
395
+
396
+
'array<TYPO3\Media\Domain\Model\Asset>':
397
+
elasticSearchMapping:
398
+
type: attachment
399
+
include_in_all: true
400
+
indexing: ${Indexing.indexAsset(value)}
401
+
```
402
+
403
+
380
404
## Debugging
381
405
382
406
In order to understand what's going on, the following commands are helpful:
0 commit comments