Compare commits

...

11 Commits

Author SHA1 Message Date
eaccb3ddbc Update signup-router.ts 2024-02-14 15:43:09 -05:00
ad482fb24e Update signup-router.ts 2024-02-14 15:37:38 -05:00
94cf3c5ae2 Update signup-router.ts 2024-02-14 15:32:31 -05:00
9b781d3af8 Update signup-router.ts 2024-02-13 19:07:17 -05:00
f38d64cc90 Update signup-router.ts 2024-02-13 18:47:36 -05:00
6c738f7ad1 Update signup-router.ts 2024-02-13 18:44:04 -05:00
afb818e41a Update signup-router.ts 2024-02-13 18:40:02 -05:00
c0d679dbd4 Update signup-router.ts 2024-02-13 18:37:26 -05:00
7046542ace Update signup-router.ts 2024-02-13 18:34:54 -05:00
cdf90bf9a5 Update signup-router.ts 2024-02-13 22:35:18 +01:00
ecfb3ec95b Update project-dal.ts 2024-02-13 22:31:27 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ export const registerSignupRouter = async (server: FastifyZodProvider) => {
},
handler: async (req) => {
const { token, user } = await server.services.signup.verifyEmailSignup(req.body.email, req.body.code);
return { message: "Successfuly verified email", token, user };
return { message: "Successfully verified email", token, user };
}
});

View File

@ -128,7 +128,7 @@ export const projectDALFactory = (db: TDbClient) => {
]
})?.[0];
} catch (error) {
throw new DatabaseError({ error, name: "Find all projects" });
throw new DatabaseError({ error, name: "Find project by ID" });
}
};