Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var bookSchema = new Schema({
  2. title: String,
  3. series: { type: Schema.Types.ObjectId, ref: 'Series' }
  4. });
  5.  
  6. bookSchema.methods.fullTitle = function() {
  7. return [this.series.title, this.title].join(" - ");
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement