users system more implemented

This commit is contained in:
nau
2016-09-07 21:50:28 +02:00
parent 4602ace2bc
commit 4255875f84
6 changed files with 297 additions and 256 deletions

View File

@@ -10,6 +10,7 @@ var userSchema = new Schema({
avatar: { type: String },
github: { type: String },
web: { type: String },
projects: { type: String }
projects: { type: String },
connected: { type: Boolean }
})
module.exports = mongoose.model('userModel', userSchema);