1.0.1 • Published 8 years ago
mongoose-disable-remove v1.0.1
mongoose-disable-remove
A plugin that will disable remove functions for mongoose models.
If a schema enabled this schema, any call to Model.remove
& Document.remove
will return a reject promise or callback(err) if a callback provided.
Install
npm install mongoose-disable-remove
Example
var mongoose = require('mongoose')
var disableRemovePlugin = require('mongoose-disable-remove')
var YourSchema = new Schema({
content: String
})
YourSchema.plugin(disableRemovePlugin)
Test
npm test
1.0.1
8 years ago