Skip to content

Instantly share code, notes, and snippets.

@jnordberg
Created January 13, 2012 15:42
Show Gist options
  • Save jnordberg/1607035 to your computer and use it in GitHub Desktop.
Save jnordberg/1607035 to your computer and use it in GitHub Desktop.
Mongoose wasNew plugin
mongoose.plugin (schema) ->
### wasNew plugin - adds ability to check if document was
created or updated from within middlewares ###
schema.pre 'save', (next) ->
@wasNew = @isNew
next()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment