Added gender to user schema and radio buttons to account page

This commit is contained in:
Sahat Yalkabov
2013-12-06 00:18:39 -05:00
parent 9c389c1afb
commit ce3a8c78ec
4 changed files with 17 additions and 9 deletions

View File

@ -18,6 +18,7 @@ var userSchema = new mongoose.Schema({
profile: {
name: { type: String, default: '' },
email: { type: String, default: '' },
gender: { type: String, default: '' },
location: { type: String, default: '' },
website: { type: String, default: '' },
picture: { type: String, default: '' }