diff options
author | John Nduli | 2024-10-31 16:50:30 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-11-04 12:22:43 +0300 |
commit | 992bdc78601183a71a240ccae8bd8c701d201266 (patch) | |
tree | e4f689ce4bbd714e7d4d44dc89de65cafce06e18 /gn2/wqflask/views.py | |
parent | 4b72138a541eec9dad101d42da2bba54e8e357fa (diff) | |
download | genenetwork2-992bdc78601183a71a240ccae8bd8c701d201266.tar.gz |
fix: correct use of AI_SEARCH_ENABLED flag
Diffstat (limited to 'gn2/wqflask/views.py')
-rw-r--r-- | gn2/wqflask/views.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gn2/wqflask/views.py b/gn2/wqflask/views.py index ab151c59..16c95ca7 100644 --- a/gn2/wqflask/views.py +++ b/gn2/wqflask/views.py @@ -248,10 +248,13 @@ def gsearchact(): search_type = request.args["type"] is_user_logged_in = session_info().get("user", {}).get("logged_in", False) - do_ai_search = current_app.config.get( - "AI_SEARCH_ENABLED") and is_user_logged_in + ai_search_enabled = current_app.config.get("AI_SEARCH_ENABLED") + do_ai_search = ai_search_enabled and is_user_logged_in if search_type == "gene": - return render_template("gsearch_gene.html", **result, do_ai_search=do_ai_search, result=result) + return render_template("gsearch_gene.html", **result, + ai_search_enabled=ai_search_enabled, + do_ai_search=do_ai_search, + result=result) elif search_type == "phenotype": return render_template("gsearch_pheno.html", **result) |