From 0f0a49f74fcb27098c084ff08b0b8554c35b13f5 Mon Sep 17 00:00:00 2001 From: Glax Date: Fri, 16 May 2025 19:27:22 +0200 Subject: [PATCH] Change Search with name to GET Request --- API/Controllers/SearchController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/Controllers/SearchController.cs b/API/Controllers/SearchController.cs index d4b8103..2894762 100644 --- a/API/Controllers/SearchController.cs +++ b/API/Controllers/SearchController.cs @@ -25,7 +25,7 @@ public class SearchController(PgsqlContext context, ILog Log) : Controller /// MangaConnector with ID not found /// MangaConnector with ID is disabled /// Error during Database Operation - [HttpPost("{MangaConnectorName}/{Query}")] + [HttpGet("{MangaConnectorName}/{Query}")] [ProducesResponseType(Status200OK, "application/json")] [ProducesResponseType(Status404NotFound)] [ProducesResponseType(Status406NotAcceptable)]