diff options
| author | Alexandre Flament <alex@al-f.net> | 2022-05-15 20:42:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-15 20:42:37 +0200 |
| commit | f814ac703b25640d28ab3a4a096f693808cde6db (patch) | |
| tree | 7dc3ad14a12b72f8b52010bf1cc9ab5442aa0765 /searx/webapp.py | |
| parent | 173c14544e918891b2cb788615294ccb157892ae (diff) | |
| parent | 7d443dfea389d8bfaaa90142d3c1a6c1a068d5a9 (diff) | |
Merge pull request #1202 from julianfairfax/master
Preferences URL in preferences
Diffstat (limited to 'searx/webapp.py')
| -rwxr-xr-x | searx/webapp.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 7eca07753..86de88407 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -971,6 +971,11 @@ def preferences(): # pylint: disable=too-many-locals, too-many-return-statements, too-many-branches # pylint: disable=too-many-statements + # save preferences using the link the /preferences?preferences=...&save=1 + if request.args.get('save') == '1': + resp = make_response(redirect(url_for('index', _external=True))) + return request.preferences.save(resp) + # save preferences if request.method == 'POST': resp = make_response(redirect(url_for('index', _external=True))) |