This commit is contained in:
parent
a79285cd3d
commit
8188bdbcb0
|
@ -194,7 +194,7 @@ module.exports = Self => {
|
|||
await user.updateAttribute('email', email, myOptions);
|
||||
|
||||
await models.Worker.create({
|
||||
id: isFreelance ? user.id : client.id,
|
||||
id: user.id,
|
||||
firstName,
|
||||
lastName: lastNames,
|
||||
code,
|
||||
|
@ -219,8 +219,8 @@ module.exports = Self => {
|
|||
throw e;
|
||||
}
|
||||
|
||||
await models.VnUser.resetPassword({email, emailTemplate: 'worker-welcome', id: client.id});
|
||||
await models.VnUser.resetPassword({email, emailTemplate: 'worker-welcome', id: user.id});
|
||||
|
||||
return {id: client.id};
|
||||
return {id: user.id};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue