Updating possible user gender choices.

This commit is contained in:
Nick Winter 2015-04-03 19:12:48 -07:00
parent a426f34b55
commit 383e64d6dc

View file

@ -53,7 +53,7 @@ _.extend UserSchema.properties,
iosIdentifierForVendor: c.shortString({format: 'hidden'})
firstName: c.shortString({title: 'First Name'})
lastName: c.shortString({title: 'Last Name'})
gender: {type: 'string', 'enum': ['male', 'female']}
gender: {type: 'string', 'enum': ['male', 'female', 'secret', 'trans']}
ageRange: {type: 'string'} # 'enum': ['0-13', '14-17', '18-24', '25-34', '35-44', '45-100']
password: {type: 'string', maxLength: 256, minLength: 2, title: 'Password'}
passwordReset: {type: 'string'}