summaryrefslogtreecommitdiff
path: root/docs/admin/engines.rst
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2020-05-31 23:27:05 +0200
committerGitHub <noreply@github.com>2020-05-31 23:27:05 +0200
commite974bbc17a6a659b14b7ab071d5cc2d72a4d6504 (patch)
tree521fbd7806bf636bdf09c5e2f9be4d4fa2493e8d /docs/admin/engines.rst
parentd38952c1335d3c6f8615870b11ef9737b203ad49 (diff)
parente3282748d0433d455336487f7e36b789fe6ade30 (diff)
Merge pull request #1903 from kvch/feature-ignore-engine-timeout
Hide error messages from users
Diffstat (limited to 'docs/admin/engines.rst')
-rw-r--r--docs/admin/engines.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/admin/engines.rst b/docs/admin/engines.rst
index 4b78c8c2b..4d1872dfc 100644
--- a/docs/admin/engines.rst
+++ b/docs/admin/engines.rst
@@ -26,6 +26,8 @@ Safe search **SS**
Weigth **W**
------------- ----------- ---------------------------------
Disabled **D**
+------------- ----------- ---------------------------------
+Show errors **DE**
============= =========== =================================
Configuration defaults (at built time):
@@ -51,6 +53,7 @@ Configuration defaults (at built time):
- O
- W
- D
+ - DE
{% for name, mod in engines.items() %}
@@ -67,5 +70,6 @@ Configuration defaults (at built time):
- {{(mod.offline and "y") or ""}}
- {{mod.weight or 1 }}
- {{(mod.disabled and "y") or ""}}
+ - {{(mod.display_error_messages and "y") or ""}}
{% endfor %}