mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-16 20:40:10 +01:00
Allow json submission to /suggest
This commit is contained in:
parent
81ba2b81e9
commit
cb11dfc6b1
@ -1038,6 +1038,13 @@ def create_app(args):
|
||||
if not args.suggestions:
|
||||
abort(403, description=_("Suggestions are disabled on this server."))
|
||||
|
||||
if request.is_json:
|
||||
json = get_json_dict(request)
|
||||
q = json.get("q")
|
||||
s = json.get("s")
|
||||
source_lang = json.get("source")
|
||||
target_lang = json.get("target")
|
||||
else:
|
||||
q = request.values.get("q")
|
||||
s = request.values.get("s")
|
||||
source_lang = request.values.get("source")
|
||||
|
Loading…
Reference in New Issue
Block a user