From ffbe8b5987ccd88f6c2d04beab2944959490e15d Mon Sep 17 00:00:00 2001 From: Rory& Date: Fri, 19 Dec 2025 23:14:21 +0100 Subject: Implement widget --- src/api/Server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/api/Server.ts') diff --git a/src/api/Server.ts b/src/api/Server.ts index f81898e8..9cc1820f 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts @@ -115,8 +115,8 @@ export class SpacebarServer extends Server { app.use("/imageproxy/:hash/:size/:url", ImageProxy); app.get("/", (req, res) => res.sendFile(path.join(PUBLIC_ASSETS_FOLDER, "index.html"))); - app.get("/verify-email", (req, res) => res.sendFile(path.join(PUBLIC_ASSETS_FOLDER, "verify.html"))); + app.get("/widget", (req, res) => res.sendFile(path.join(PUBLIC_ASSETS_FOLDER, "widget.html"))); app.get("/_spacebar/api/schemas.json", (req, res) => { res.sendFile(path.join(ASSETS_FOLDER, "schemas.json")); -- cgit 1.5.1