You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
535 B
31 lines
535 B
const mongoose = require('mongoose');
|
|
const bcrypt = require('bcrypt');
|
|
const saltRounds = 10;
|
|
|
|
//Define a schema
|
|
const Schema = mongoose.Schema;
|
|
|
|
const UserSchema = new Schema({
|
|
name: {
|
|
type: String,
|
|
trim: true,
|
|
required: true,
|
|
},
|
|
email: {
|
|
type: String,
|
|
trim: true,
|
|
required: true
|
|
},
|
|
password: {
|
|
type: String,
|
|
trim: true,
|
|
required: true
|
|
}
|
|
});
|
|
|
|
UserSchema.pre('save', function(next){
|
|
this.password = bcrypt.hashSync(this.password, saltRounds);
|
|
next();
|
|
});
|
|
|
|
module.exports = mongoose.model('User', UserSchema); |