From d9903b5309412bfc8fde5ffe6bcd6ec054a0405a Mon Sep 17 00:00:00 2001 From: Michael Anderson <33232231+MichaelAceAnderson@users.noreply.github.com> Date: Mon, 20 Jul 2026 00:19:38 +0200 Subject: [PATCH] feat: Added missing HTTP request types --- Server/Source/core_impl.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Server/Source/core_impl.hpp b/Server/Source/core_impl.hpp index 75acea715..5da394cfe 100644 --- a/Server/Source/core_impl.hpp +++ b/Server/Source/core_impl.hpp @@ -1064,6 +1064,18 @@ class HTTPAsyncIO case HTTPRequestType_Head: res = request.Head(path.data()); break; + case HTTPRequestType_Put: + res = request.Put(path.data(), String(data), "application/x-www-form-urlencoded"); + break; + case HTTPRequestType_Patch: + res = request.Patch(path.data(), String(data), "application/x-www-form-urlencoded"); + break; + case HTTPRequestType_Delete: + res = request.Delete(path.data()); + break; + case HTTPRequestType_Options: + res = request.Options(path.data()); + break; } if (res)