|
|
|
@ -1001,10 +1001,7 @@ export default class RestAuthCtrl {
|
|
|
|
|
const email = _email.toLowerCase(); |
|
|
|
|
|
|
|
|
|
const user = await this.users.where({ email }).first(); |
|
|
|
|
if (!user) { |
|
|
|
|
return next(new Error('This email is not registered with us.')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (user) { |
|
|
|
|
const token = uuidv4(); |
|
|
|
|
await this.users |
|
|
|
|
.update({ |
|
|
|
@ -1038,8 +1035,8 @@ export default class RestAuthCtrl {
|
|
|
|
|
description: `requested for password reset `, |
|
|
|
|
ip: req.clientIp |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
res.json({ msg: 'Check your email for password reset link.' }); |
|
|
|
|
} |
|
|
|
|
res.json({ msg: 'Check your email if you are registered with us.' }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected async tokenValidate(req, res, next): Promise<any> { |
|
|
|
|