Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. ItemSchema.pre('validate', function(next) {
  2.  
  3. var isFinal = this.wasPreviouslySetAsFinal;
  4.  
  5. if(isFinal) {
  6. return next('document is final so can not be updated/changed')
  7. }
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement