Skip to content

Commit

Permalink
test breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 committed Feb 13, 2024
1 parent b32558c commit 6546740
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/server/routes/v1/admin-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
}
},
Expand Down Expand Up @@ -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
};
}
});
Expand Down

0 comments on commit 6546740

Please sign in to comment.