From 3c727ca54b772249f822016f54d0f403b46cdfd5 Mon Sep 17 00:00:00 2001 From: kiyell Date: Mon, 8 Jan 2024 23:32:44 +0100 Subject: [PATCH] Added OPTIONS HTTP method (#2094) --- changedetectionio/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/changedetectionio/forms.py b/changedetectionio/forms.py index d8646305..9f72a748 100644 --- a/changedetectionio/forms.py +++ b/changedetectionio/forms.py @@ -43,6 +43,7 @@ valid_method = { 'PUT', 'PATCH', 'DELETE', + 'OPTIONS', } default_method = 'GET'