Fix PATCH verb

Fix PATCH in the router.
https://github.com/openbmc/bmcweb/commit/888880af0ec22bb50e262917bd5dab5d221d521c
was injected recently which attempted to reduce the memory load on the
system by reducing the number of handlers we hold.  This code is already
brittle, as it relies on a specific order of verbs in boost.
unfortunately, patch was accidentally removed from the router.

This commit reverts the attempted memory reclaiming, and does what the
old code did, claiming all the way to UNLINK verb.

Tested:
only inspected at this point, but CI was able to catch the failure.

Signed-off-by: Ed Tanous <ed@tanous.net>
Change-Id: I62a531cb20c2508db2dcedec249c2f39719a2181
diff --git a/http/routing.h b/http/routing.h
index 2302658..f07e51b 100644
--- a/http/routing.h
+++ b/http/routing.h
@@ -1423,7 +1423,7 @@
     };
 
     const static size_t maxHttpVerbCount =
-        static_cast<size_t>(boost::beast::http::verb::trace);
+        static_cast<size_t>(boost::beast::http::verb::unlink);
 
     std::array<PerMethod, maxHttpVerbCount> perMethods;
     std::vector<std::unique_ptr<BaseRule>> allRules;