From 65fd709472727c13e2bf5d7e13dbc69ad885598c Mon Sep 17 00:00:00 2001 From: c8y3 <25362953+c8y3@users.noreply.github.com> Date: Fri, 10 Jan 2025 14:03:22 +0100 Subject: [PATCH] [FIX] path to API v2 tasks routes was incorrect --- source/app/blueprints/rest/v2/cases/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/blueprints/rest/v2/cases/tasks.py b/source/app/blueprints/rest/v2/cases/tasks.py index 19817efc7..b41eb4343 100644 --- a/source/app/blueprints/rest/v2/cases/tasks.py +++ b/source/app/blueprints/rest/v2/cases/tasks.py @@ -36,7 +36,7 @@ case_tasks_bp = Blueprint('case_tasks', __name__, - url_prefix='/cases//tasks') + url_prefix='//tasks') @case_tasks_bp.post('', strict_slashes=False)