fix: disable light mode, return all repos from search

This commit is contained in:
2026-01-22 17:31:46 -08:00
parent d9622ea451
commit 496ed2cb00
3 changed files with 17 additions and 23 deletions

View File

@@ -35,11 +35,5 @@ pub async fn search_repos(
.json::<SearchResponse>()
.await?;
Ok(HttpResponse::Ok().json(
response
.items
.into_iter()
.filter(|r| r.private == false)
.collect::<Vec<Repository>>(),
))
Ok(HttpResponse::Ok().json(response.items))
}