mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
change route /keys/
-> /keys
; #495
This commit is contained in:
parent
1cb9f75026
commit
decce4d8e4
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ pub fn load_routes(app: &mut tide::Server<Data>) {
|
||||||
app.at("/indexes/:index/stats")
|
app.at("/indexes/:index/stats")
|
||||||
.get(|ctx| into_response(stats::index_stats(ctx)));
|
.get(|ctx| into_response(stats::index_stats(ctx)));
|
||||||
|
|
||||||
app.at("/keys/").get(|ctx| into_response(key::list(ctx)));
|
app.at("/keys").get(|ctx| into_response(key::list(ctx)));
|
||||||
|
|
||||||
app.at("/health")
|
app.at("/health")
|
||||||
.get(|ctx| into_response(health::get_health(ctx)))
|
.get(|ctx| into_response(health::get_health(ctx)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue