]> Untitled Git - lemmy.git/blobdiff - server/src/routes/index.rs
routes.api: fix get_captcha endpoint (#1135)
[lemmy.git] / server / src / routes / index.rs
index b579a1958384fb625680319b77370fe3578c17c5..88a36c3983b9aa6ae4b46e9c60e669b9abff44ba 100644 (file)
@@ -40,7 +40,8 @@ pub fn config(cfg: &mut web::ServiceConfig) {
     )
     .route("/search", web::get().to(index))
     .route("/sponsors", web::get().to(index))
-    .route("/password_change/{token}", web::get().to(index));
+    .route("/password_change/{token}", web::get().to(index))
+    .route("/instances", web::get().to(index));
 }
 
 async fn index() -> Result<NamedFile, Error> {