diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-25 17:56:25 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-25 17:56:25 +0000 |
commit | cd0f291eb1a608589fcc2c1875fa7099ed8e2c51 (patch) | |
tree | 05b1d8b1d63baed174883cc96807051e530969a2 /src/app.ts | |
parent | b17238eb2840553c69fc2dae168be557afbcee9c (diff) |
feat: optionally restrict event creation to specific emails
Diffstat (limited to 'src/app.ts')
-rwxr-xr-x | src/app.ts | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,7 @@ import activitypub from "./routes/activitypub.js"; import event from "./routes/event.js"; import group from "./routes/group.js"; import staticPages from "./routes/static.js"; +import magicLink from "./routes/magicLink.js"; import { initEmailService } from "./lib/email.js"; import { @@ -63,6 +64,7 @@ app.use("/", frontend); app.use("/", activitypub); app.use("/", event); app.use("/", group); +app.use("/", magicLink); app.use("/", routes); export default app; |