Skip to content
Snippets Groups Projects

Implement UC201 - Select Location

Compare and
22 files
+ 3577
1504
Compare changes
  • Side-by-side
  • Inline
Files
22
+ 1
1
@@ -64,7 +64,7 @@ UserSchema.pre('save', function (next) {
if (err) {
return next(err);
}
bcrypt.hash(user.password, salt, function (err, hash) {
bcrypt.hash(user.password, salt, null, function (err, hash) {
if (err) {
return next(err);
}
Loading