From db4ca599aa72d84a5cc4b5de99b28157e42106f2 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Wed, 15 May 2024 08:11:13 -0700 Subject: [PATCH] accept POST on rels parsing endpoint --- public/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public/index.php b/public/index.php index 25445f8..941d827 100644 --- a/public/index.php +++ b/public/index.php @@ -29,6 +29,7 @@ class Config { $router->addRoute('POST', '/feeds', 'Feeds::find'); $router->addRoute('GET', '/rels', 'Rels::fetch'); +$router->addRoute('POST', '/rels', 'Rels::fetch'); $router->addRoute('GET', '/cert', 'Certbot::index'); $router->addRoute('GET', '/cert/auth', 'Certbot::start_auth');