Commit 9b52689e authored by Romain Courteaud's avatar Romain Courteaud

erp5_json_rpc_api: use accessor

parent 21765702
...@@ -124,7 +124,7 @@ class JsonRpcAPIService(OpenAPIService): ...@@ -124,7 +124,7 @@ class JsonRpcAPIService(OpenAPIService):
# The convention is defined by the web service configuration only # The convention is defined by the web service configuration only
request_path = '/'.join(request_path_parts) request_path = '/'.join(request_path_parts)
matched_operation = None matched_operation = None
for line in (self.getProperty('text_content') or '').split('\n'): for line in self.getJsonFormList():
if not line: if not line:
continue continue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment