remove the route to get identifier on settings; fix #502

This commit is contained in:
qdequele 2020-03-05 15:06:18 +01:00 committed by Quentin de Quelen
parent f4ae0844ab
commit 8aeddec982
2 changed files with 0 additions and 16 deletions

View file

@ -83,9 +83,6 @@ pub fn load_routes(app: &mut tide::Server<Data>) {
.post(|ctx| into_response(setting::update_distinct(ctx)))
.delete(|ctx| into_response(setting::delete_distinct(ctx)));
app.at("/indexes/:index/settings/identifier")
.get(|ctx| into_response(setting::get_identifier(ctx)));
app.at("/indexes/:index/settings/searchable-attributes")
.get(|ctx| into_response(setting::get_searchable(ctx)))
.post(|ctx| into_response(setting::update_searchable(ctx)))