Add task routes, bug fixes

This commit is contained in:
2025-01-29 15:44:24 +05:30
parent 405338c314
commit a157cb3fed
10 changed files with 413 additions and 29 deletions

View File

@@ -13,6 +13,7 @@ import { fileSchemas } from "./file/file.schema";
import { oauth } from "./oauth";
import { authRoutes } from "./auth/auth.route";
import { rtsSchemas } from "./rts/rts.schema";
import { taskSchemas } from "./task/task.schema";
const app = fastify({ logger: true });
@@ -39,6 +40,7 @@ for (const schema of [
...permitSchemas,
...fileSchemas,
...rtsSchemas,
...taskSchemas,
]) {
app.addSchema(schema);
}