feat(federation): Add bridge tokens, federation request debugging

This commit is contained in:
Jesse Wierzbinski 2024-05-21 14:59:03 -10:00
parent 673b7d0bae
commit eab61b38f1
No known key found for this signature in database
5 changed files with 122 additions and 22 deletions

View file

@ -527,6 +527,13 @@ export const configValidator = z.object({
)
.default({}),
}),
debug: z
.object({
federation: z.boolean().default(false),
})
.default({
federation: false,
}),
});
export type Config = z.infer<typeof configValidator>;