From e3f0f700bf2de3b8e7d7c72893a4d6cb128f000d Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Sun, 26 Jan 2025 00:27:45 +0100 Subject: update --- src/api/search_results.rs | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/api/search_results.rs') diff --git a/src/api/search_results.rs b/src/api/search_results.rs index 8f01e56..9ccb013 100644 --- a/src/api/search_results.rs +++ b/src/api/search_results.rs @@ -7,7 +7,6 @@ use serde::Deserialize; #[derive(Deserialize)] struct SearchQueryOptions { - id: Option, name: Option, } @@ -16,23 +15,6 @@ pub async fn search_results( app_state: web::Data, get_args: web::Query, ) -> HttpResponse { - let default: String = String::default(); - - if get_args.id.is_some() { - let id: &str = get_args.id.as_ref().unwrap_or(&default); - let search_attempt: ( - sqlx::Result, sqlx::Error>, - sqlx::Result, sqlx::Error>, - sqlx::Result, sqlx::Error>, - ) = { app_state.database.search_results_by_id(id).await }; - - return HttpResponse::Ok().json(( - search_attempt.0.unwrap_or(None), - search_attempt.1.unwrap_or(None), - search_attempt.2.unwrap_or(None), - )); - }; - let search_attempt: ( sqlx::Result, sqlx::Error>, sqlx::Result, sqlx::Error>, -- cgit v1.2.3