mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 15:38:55 +01:00
change route /keys/
-> /keys
; #495
This commit is contained in:
parent
1cb9f75026
commit
decce4d8e4
@ -113,7 +113,7 @@ pub fn load_routes(app: &mut tide::Server<Data>) {
|
||||
app.at("/indexes/:index/stats")
|
||||
.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")
|
||||
.get(|ctx| into_response(health::get_health(ctx)))
|
||||
|
Loading…
Reference in New Issue
Block a user