mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-22 07:51:00 +00:00
Merge pull request #216 from fushinari/suggest-errors
suggestions: Abort when missing parameters
This commit is contained in:
commit
ea332b11e6
1 changed files with 9 additions and 0 deletions
|
@ -903,6 +903,15 @@ def create_app(args):
|
||||||
source_lang = request.values.get("source")
|
source_lang = request.values.get("source")
|
||||||
target_lang = request.values.get("target")
|
target_lang = request.values.get("target")
|
||||||
|
|
||||||
|
if not q:
|
||||||
|
abort(400, description="Invalid request: missing q parameter")
|
||||||
|
if not s:
|
||||||
|
abort(400, description="Invalid request: missing s parameter")
|
||||||
|
if not source_lang:
|
||||||
|
abort(400, description="Invalid request: missing source parameter")
|
||||||
|
if not target_lang:
|
||||||
|
abort(400, description="Invalid request: missing target parameter")
|
||||||
|
|
||||||
SuggestionsDatabase().add(q, s, source_lang, target_lang)
|
SuggestionsDatabase().add(q, s, source_lang, target_lang)
|
||||||
return jsonify({"success": True})
|
return jsonify({"success": True})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue