summaryrefslogtreecommitdiff
path: root/src/app.ts
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2024-02-25 17:56:25 +0000
committerRaphael Kabo <raphaelkabo@hey.com>2024-02-25 17:56:25 +0000
commitcd0f291eb1a608589fcc2c1875fa7099ed8e2c51 (patch)
tree05b1d8b1d63baed174883cc96807051e530969a2 /src/app.ts
parentb17238eb2840553c69fc2dae168be557afbcee9c (diff)
feat: optionally restrict event creation to specific emails
Diffstat (limited to 'src/app.ts')
-rwxr-xr-xsrc/app.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app.ts b/src/app.ts
index f3c99c7..40425a8 100755
--- a/src/app.ts
+++ b/src/app.ts
@@ -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;