diff options
author | Frederick Muriuki Muriithi | 2024-06-05 16:38:21 -0500 |
---|---|---|
committer | Alexander_Kabui | 2024-08-28 15:02:45 +0300 |
commit | b22d5baffb236c522ff8469f3495b63912201094 (patch) | |
tree | a4b3c12e9c4f229a296957da11f276dec92a0f2d | |
parent | 16b9ccc56a99f1290825c36b3788590a585920a6 (diff) | |
download | genenetwork2-b22d5baffb236c522ff8469f3495b63912201094.tar.gz |
Bug: Add missing data to search query.
-rw-r--r-- | gn2/wqflask/oauth2/data.py | 2 |
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) |