summary refs log tree commit diff
path: root/src/api/Server.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2025-09-05 18:03:59 -0400
committerPuyodead1 <puyodead@proton.me>2025-09-05 18:03:59 -0400
commitb8b9b038cfc11f10ec6070679dca22b066d3a2c9 (patch)
tree1e1f391329fa6ce4afcf5b24a54ff4855a8151bd /src/api/Server.ts
parentfix an issue with NO_AUTHENTICATE routes (diff)
downloadserver-ts-b8b9b038cfc11f10ec6070679dca22b066d3a2c9.tar.xz
fixes and minor changes for email stuff
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 d950dec0..910e3496 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts
@@ -151,7 +151,7 @@ export class SpacebarServer extends Server { res.sendFile(path.join(PUBLIC_ASSETS_FOLDER, "index.html")), ); - app.get("/verify", (req, res) => + app.get("/verify-email", (req, res) => res.sendFile(path.join(PUBLIC_ASSETS_FOLDER, "verify.html")), );