From 6891ce5661be2e124e0cabb046da6affbc2be2d7 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Mon, 21 Jul 2025 23:29:17 +1000 Subject: [PATCH] Make Http client path consistent --- routes/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/http.py b/routes/http.py index af76b17..b8aaf27 100644 --- a/routes/http.py +++ b/routes/http.py @@ -199,7 +199,7 @@ def logs(function_id): return render_block(environment, 'dashboard/http_functions/logs.html', 'page', user_id=user_id, function_id=function_id, name=name, http_function_invocations=http_function_invocations) return render_template("dashboard/http_functions/logs.html", user_id=user_id, name=name, function_id=function_id, http_function_invocations=http_function_invocations) -@http.route("//client", methods=["GET"]) +@http.route("/client/", methods=["GET"]) @login_required def client(function_id): user_id = current_user.id