update webauthn flow

This commit is contained in:
2025-02-27 16:34:20 +05:30
parent 0b9f941cb3
commit 63bcc4bafd
5 changed files with 45 additions and 45 deletions

View File

@@ -19,6 +19,7 @@ import { noteSchemas } from "./note/note.schema";
import { webAuthnRoutes } from "./webauthn/webauthn.route";
import { configSchemas } from "./config/config.schema";
import { mailSchemas } from "./mailProxy/mailProxy.schema";
import { viewSchemas } from "./view/view.schema";
const app = fastify({ logger: true, trustProxy: true });
@@ -51,6 +52,7 @@ for (const schema of [
...noteSchemas,
...configSchemas,
...mailSchemas,
...viewSchemas,
]) {
app.addSchema(schema);
}