refs #6397 emailValidation #1941
|
@ -31,16 +31,16 @@ module.exports = function(Self) {
|
|||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
let user;
|
||||
if (data.email) {
|
||||
const firstEmail = data.email ? data.email.split(',')[0] : null;
|
||||
user = {
|
||||
name: data.userName,
|
||||
email: firstEmail,
|
||||
password: String(Math.random() * 100000000000000)
|
||||
};
|
||||
} else
|
||||
throw new UserError(`An email is necessary`);
|
||||
if (!data.email)
|
||||
|
||||
throw new UserError('An email is necessary');
|
||||
carlossa marked this conversation as resolved
Outdated
alexm
commented
Esto se puede refactorizar y dejar sin if else Esto se puede refactorizar y dejar sin if else
|
||||
|
||||
carlossa marked this conversation as resolved
Outdated
alexm
commented
Aqui como este codigo siempre va a tener data.email se puede quitar el hacer ? : (if else) Aqui como este codigo siempre va a tener data.email se puede quitar el hacer ? : (if else)
|
||||
const firstEmail = data.email.split(',')[0];
|
||||
|
||||
const user = {
|
||||
name: data.userName,
|
||||
email: firstEmail,
|
||||
password: String(Math.random() * 100000000000000)
|
||||
};
|
||||
|
||||
try {
|
||||
const account = await models.VnUser.create(user, myOptions);
|
||||
|
|
Loading…
Reference in New Issue
@alexm valorares la opcio de posar-ho en back/models/vn-user.js com a una validacio nativa?
Per mi si, pero hi hauria que mirar els nulls que hi hajen com se comporta la restriccio, pq segurament qualsevol canvi en el model fallara