From 2624034cd6f417b52ed3f9f3f5226720fa0b53a1 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Thu, 21 Oct 2021 12:11:42 +0200 Subject: [PATCH] [mod] settings_defaults.py: default values for the brand section --- searx/settings_defaults.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py index 331cd643d..1a755fb8b 100644 --- a/searx/settings_defaults.py +++ b/searx/settings_defaults.py @@ -151,11 +151,11 @@ SCHEMA = { 'contact_url': SettingsValue((None, False, str), None), }, 'brand': { - 'issue_url': SettingsValue(str, None), - 'new_issue_url': SettingsValue(str, None), - 'docs_url': SettingsValue(str, None), - 'public_instances': SettingsValue(str, None), - 'wiki_url': SettingsValue(str, None), + 'issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues'), + 'new_issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues/new'), + 'docs_url': SettingsValue(str, 'https://searxng.github.io/searxng'), + 'public_instances': SettingsValue(str, 'https://searx.space'), + 'wiki_url': SettingsValue(str, 'https://github.com/searxng/searxng/wiki'), }, 'search': { 'safe_search': SettingsValue((0,1,2), 0),