test breaking change

This commit is contained in:
Maidul Islam
2024-02-13 00:34:31 -05:00
parent b32558c66f
commit 6546740bd9

View File

@ -71,8 +71,8 @@ export const registerAdminRouter = async (server: FastifyZodProvider) => {
response: {
200: z.object({
message: z.string(),
user: UsersSchema,
token: z.string()
hello: z.number(),
user: UsersSchema
})
}
},
@ -107,7 +107,7 @@ export const registerAdminRouter = async (server: FastifyZodProvider) => {
return {
message: "Successfully set up admin account",
user: user.user,
token: token.access
hello: 123
};
}
});