mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-26 08:11:04 +00:00
add stop-word and synonym endpoints
This commit is contained in:
committed by
qdequele
parent
85833e3a0a
commit
22fbff98d4
@ -89,6 +89,12 @@ async fn main() -> Result<(), MainError> {
|
||||
.service(routes::setting::delete_displayed)
|
||||
.service(routes::setting::get_accept_new_fields)
|
||||
.service(routes::setting::update_accept_new_fields)
|
||||
.service(routes::stop_words::get)
|
||||
.service(routes::stop_words::update)
|
||||
.service(routes::stop_words::delete)
|
||||
.service(routes::synonym::get)
|
||||
.service(routes::synonym::update)
|
||||
.service(routes::synonym::delete)
|
||||
.service(routes::key::list)
|
||||
.service(routes::stats::index_stats)
|
||||
.service(routes::stats::get_stats)
|
||||
|
Reference in New Issue
Block a user