From 2dc26d039c8795b4d70ed619e9fda43c10eaea0f Mon Sep 17 00:00:00 2001 From: Dovi Cowan Date: Fri, 26 Jul 2024 01:11:01 +0100 Subject: [PATCH] fix /test-route --- functions/demo-web/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/demo-web/src/main.js b/functions/demo-web/src/main.js index 6d50b6b..3af4cb0 100644 --- a/functions/demo-web/src/main.js +++ b/functions/demo-web/src/main.js @@ -9,7 +9,7 @@ export default async ({ req, res, log, error }) => { return res.send('Hello, World!'); break; - case "test-route": + case "/test-route": return res.send("This is a new route, deployed with Forgejo Actions", 200, { "content-type": "text/html" });