Browse Source

[enh] add engine shortcut to config api

Adam Tauber 8 years ago
parent
commit
fbbb307f2e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      searx/webapp.py

+ 1 - 0
searx/webapp.py

@@ -693,6 +693,7 @@ def config():
     return jsonify({'categories': categories.keys(),
                     'engines': [{'name': engine_name,
                                  'categories': engine.categories,
+                                 'shortcut': engine.shortcut,
                                  'enabled': not engine.disabled}
                                 for engine_name, engine in engines.items()],
                     'plugins': [{'name': plugin.name,