fix /test-route
All checks were successful
/ test (push) Successful in 17s

This commit is contained in:
Dovi Cowan 2024-07-26 01:11:01 +01:00
parent 02b5394d7a
commit 2dc26d039c
Signed by: dcowan
GPG key ID: CC4A4CB950D7E579

View file

@ -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"
});