From ed2ebebbcb5d35bfe975932b604a46cffe3fa274 Mon Sep 17 00:00:00 2001 From: Sam Cordry Date: Tue, 23 Jan 2024 10:55:29 -0500 Subject: [PATCH] Update /terms route utoipa info --- backend/src/api/terms.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/terms.rs b/backend/src/api/terms.rs index 19f2b25..b4f4c74 100644 --- a/backend/src/api/terms.rs +++ b/backend/src/api/terms.rs @@ -6,7 +6,7 @@ use sqlx::query; #[utoipa::path( context_path = "/api", responses( - (status = 200, description = "List all terms available", body = [Term]), + (status = 200, description = "List all terms available", body = [Vec]), (status = 500, description = "Error Created by Query"), ) )]