Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created November 4, 2018 16:07
Show Gist options
  • Save amandeepmittal/fa46301e5acdd74a8fa029a53b31c06a to your computer and use it in GitHub Desktop.
Save amandeepmittal/fa46301e5acdd74a8fa029a53b31c06a to your computer and use it in GitHub Desktop.
// model/user.js
email: {
type: String,
trim: true,
unique: 'Email already exists',
match: [/.+\@.+\..+/, 'Please fill a valid email address'],
required: 'Email is required'
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment