summary refs log tree commit diff
path: root/src/api/Server.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-19 23:14:21 +0100
committerRory& <root@rory.gay>2025-12-19 23:14:21 +0100
commitffbe8b5987ccd88f6c2d04beab2944959490e15d (patch)
treec067e43817a1b37fa573a7671c5f6d67e928e2cb /src/api/Server.ts
parentDeprecation: Use object-based relations for typeorm (diff)
downloadserver-ts-ffbe8b5987ccd88f6c2d04beab2944959490e15d.tar.xz
Implement widget
Diffstat (limited to 'src/api/Server.ts')
-rw-r--r--src/api/Server.ts2
1 files changed, 1 insertions, 1 deletions
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"));