summaryrefslogtreecommitdiff
path: root/src/mailman/rest/wsgiapp.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rest/wsgiapp.py')
-rw-r--r--src/mailman/rest/wsgiapp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/rest/wsgiapp.py b/src/mailman/rest/wsgiapp.py
index bfe17af73..f3290416e 100644
--- a/src/mailman/rest/wsgiapp.py
+++ b/src/mailman/rest/wsgiapp.py
@@ -200,7 +200,8 @@ class RootedAPI(API):
# Let Falcon parse the form data into the request object's
# .params attribute.
self.req_options.auto_parse_form_urlencoded = True
- # Don't ignore empty query parameters.
+ # Don't ignore empty query parameters, e.g. preserve empty string
+ # values, which some resources will interpret as a DELETE.
self.req_options.keep_blank_qs_values = True
# Override the base class implementation to wrap a transactional