You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apenas texto com características de email podem ser aceitos (Regex)
Verificar se o email não existe no banco de dados
Informações adicionais
Esse validador deve ser usado para advogados, usuários e qualquer outro email necessário
O tipo da entidade deve ser fornecida por parâmetro
Deve ser um helper
Spec
src/helpers/validate-email.js
module.exports=async(email,model)=>{constreg=newRegExp(/** definir regra de regex a ser utilizada */)if(!reg.test(email))returnfalseconstalreadyExists=awaitmodel.exists({where: { email }})if(alreadyExists)returnfalsereturntrue}
The text was updated successfully, but these errors were encountered:
Resumo
Relacionado as issues #14 e #15
Criterios de aceitação
Informações adicionais
helper
Spec
src/helpers/validate-email.js
The text was updated successfully, but these errors were encountered: