Skip to content

Commit a5adb76

Browse files
authored
Merge pull request #88 from U-Wreckcar/requestFeature/mysql2mongo
♻️ log
2 parents 56e157f + d826e73 commit a5adb76

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/controllers/user/companySignup.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,10 @@ export async function validateEmailController(req, res, next) {
185185
try {
186186
const { email, verificationCode } = req.body.data;
187187
const verificationCode_fact = await redisClient.get(`${email}`);
188+
console.log('email : ', email)
189+
console.log('fact : ', verificationCode_fact)
190+
console.log('user : ', verificationCode)
191+
188192
if (verificationCode_fact === verificationCode) {
189193
res.status(200).json({
190194
success: true,

0 commit comments

Comments
 (0)