From 9f2c97f95ec95b524c20b6c31cd33281050cb09c Mon Sep 17 00:00:00 2001 From: fang Date: Wed, 12 Jul 2023 15:56:51 +0200 Subject: [PATCH] lull: add %'PATCH' to $method:http As of RFC 5789, PATCH is a valid HTTP request method. The $method:http type, however, did not include it. Here, we add it to the $method:http type, so that it now includes all nine standard HTTP methods. --- pkg/arvo/sys/lull.hoon | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/arvo/sys/lull.hoon b/pkg/arvo/sys/lull.hoon index bc1e22b6b1..6235b6df58 100644 --- a/pkg/arvo/sys/lull.hoon +++ b/pkg/arvo/sys/lull.hoon @@ -585,6 +585,7 @@ %'GET' %'HEAD' %'OPTIONS' + %'PATCH' %'POST' %'PUT' %'TRACE'