From f98d0325e641dd43e0ac460ef4fa931eb94c054f Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 6 Feb 2024 05:01:18 +0300 Subject: Bug: Fix routing issues Fix the routing issues that were redirecting the flow to the wrong endpoints. --- qc_app/upload/rqtl2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'qc_app/upload') diff --git a/qc_app/upload/rqtl2.py b/qc_app/upload/rqtl2.py index 73d91ec..810e031 100644 --- a/qc_app/upload/rqtl2.py +++ b/qc_app/upload/rqtl2.py @@ -95,7 +95,8 @@ def select_population(species_id: int): methods=["POST"]) def create_population(species_id: int): """Create a new population for the given species.""" - population_page = redirect(url_for("upload.rqtl2.select_population")) + population_page = redirect(url_for("upload.rqtl2.select_population", + species_id=species_id)) with database_connection(app.config["SQL_URI"]) as conn: species = species_by_id(conn, species_id) population_name = request.form.get("inbredset_name", "").strip() @@ -121,6 +122,7 @@ def create_population(species_id: int): flash("Population created successfully.", "alert-success") return redirect( url_for("upload.rqtl2.upload_rqtl2_bundle", + species_id=species_id, population_id=new_population["population_id"], pgsrc="create-population"), code=307) -- cgit v1.2.3