add notification routes

This commit is contained in:
2025-02-05 13:52:04 +05:30
parent 8559aab3da
commit 2d62e9712b
8 changed files with 193 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ import { oauth } from "./oauth";
import { authRoutes } from "./auth/auth.route";
import { rtsSchemas } from "./rts/rts.schema";
import { taskSchemas } from "./task/task.schema";
import { notificationSchemas } from "./notification/notification.schema";
const app = fastify({ logger: true });
@@ -41,6 +42,7 @@ for (const schema of [
...fileSchemas,
...rtsSchemas,
...taskSchemas,
...notificationSchemas,
]) {
app.addSchema(schema);
}