From cd0f291eb1a608589fcc2c1875fa7099ed8e2c51 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Sun, 25 Feb 2024 17:56:25 +0000 Subject: feat: optionally restrict event creation to specific emails --- src/app.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/app.ts') 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; -- cgit v1.2.3