Skip to content

Instantly share code, notes, and snippets.

@enreeco
Forked from bnoguchi/enum-access.js
Created February 23, 2014 19:05
Show Gist options
  • Save enreeco/9175720 to your computer and use it in GitHub Desktop.
Save enreeco/9175720 to your computer and use it in GitHub Desktop.
var mongoose = require('./index')
, TempSchema = new mongoose.Schema({
salutation: {type: String, enum: ['Mr.', 'Mrs.', 'Ms.']}
});
var Temp = mongoose.model('Temp', TempSchema);
console.log(Temp.schema.path('salutation').enumValues);
var temp = new Temp();
console.log(temp.schema.path('salutation').enumValues);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment