inetstudio / faq
Package for faq
v10.0.0
2023-12-30 10:31 UTC
Requires
- inetstudio/admin-panel: ^10.0
- inetstudio/captcha: ^10.0
- inetstudio/persons: ^10.0
This package is auto-updated.
Last update: 2026-05-29 02:00:48 UTC
README
curl -X PUT "localhost:9200/app_index_faq" -H 'Content-Type: application/json' -d'
{
"settings": {
"analysis": {
"filter": {
"ru_stop": {
"type": "stop",
"stopwords": "_russian_"
},
"ru_stemmer": {
"type": "stemmer",
"language": "russian"
}
},
"analyzer": {
"default": {
"char_filter": [
"html_strip"
],
"tokenizer": "standard",
"filter": [
"lowercase",
"ru_stop",
"ru_stemmer"
]
}
}
}
},
"mappings":{
"properties":{
"type": {
"type":"keyword"
},
"id":{
"type":"integer"
},
"is_published": {
"type":"boolean"
},
"question":{
"type":"text"
},
"answer":{
"type":"text"
}
}
}
}
'