aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-05 16:38:21 -0500
committerAlexander_Kabui2024-08-28 15:02:45 +0300
commitb22d5baffb236c522ff8469f3495b63912201094 (patch)
treea4b3c12e9c4f229a296957da11f276dec92a0f2d /gn2/wqflask
parent16b9ccc56a99f1290825c36b3788590a585920a6 (diff)
downloadgenenetwork2-b22d5baffb236c522ff8469f3495b63912201094.tar.gz
Bug: Add missing data to search query.
Diffstat (limited to 'gn2/wqflask')
-rw-r--r--gn2/wqflask/oauth2/data.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gn2/wqflask/oauth2/data.py b/gn2/wqflask/oauth2/data.py
index 767de1a3..16e5f60c 100644
--- a/gn2/wqflask/oauth2/data.py
+++ b/gn2/wqflask/oauth2/data.py
@@ -124,6 +124,7 @@ def json_search_mrna() -> Response:
@data.route("/phenotype/search", methods=["POST"])
def json_search_phenotypes() -> Response:
"""Search for phenotypes."""
+ from gn2.utility.tools import GN_SERVER_URL
form = request.json
def __handle_error__(err):
error = process_error(err)
@@ -138,6 +139,7 @@ def json_search_phenotypes() -> Response:
"per_page": int(form.get("per_page", 50)),
"page": int(form.get("page", 1)),
"auth_server_uri": authserver_uri(),
+ "gn3_server_uri": GN_SERVER_URL,
"selected_traits": form.get("selected_traits", [])
}).either(__handle_error__, jsonify)