User profile pictures now defaults to empty string, it won't be displayed if it's not present

This commit is contained in:
Sahat Yalkabov
2013-12-11 22:16:06 -05:00
parent 6e0c7afb5a
commit a9cd6e07ac
3 changed files with 13 additions and 10 deletions

View File

@ -18,7 +18,7 @@ var userSchema = new mongoose.Schema({
gender: { type: String, default: '' },
location: { type: String, default: '' },
website: { type: String, default: '' },
picture: { type: String, default: 'http://bit.ly/1cppDAL' }
picture: { type: String, default: '' }
}
});
@ -30,7 +30,7 @@ userSchema.path('password').validate(function(password) {
userSchema.path('username').validate(function(username) {
if (this.provider) return true;
return username.length;
}, 'Username cannot be blank');
}, 'Email cannot be blank');
userSchema.pre('save', function(next) {