From ecd81e0e21439c3b2e3f8d7aab9ff324fcd8e6ed Mon Sep 17 00:00:00 2001 From: OriolMForgeFlow Date: Mon, 17 Jul 2023 13:02:38 +0200 Subject: [PATCH] [IMP] endpoint_route_handler: add request_content_type application_json_utf8 --- endpoint_route_handler/models/endpoint_route_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/endpoint_route_handler/models/endpoint_route_handler.py b/endpoint_route_handler/models/endpoint_route_handler.py index 38fd46d3..20a149b7 100644 --- a/endpoint_route_handler/models/endpoint_route_handler.py +++ b/endpoint_route_handler/models/endpoint_route_handler.py @@ -129,6 +129,7 @@ def _selection_request_content_type(self): ("application/json", "JSON"), ("application/xml", "XML"), ("application/x-www-form-urlencoded", "Form"), + ("application/json; charset=utf-8", "JSON_UTF8 (Deprecated)"), ] @api.depends(lambda self: self._routing_impacting_fields())