jeanmmlima / labsdca

web system for management of labs
0 stars 0 forks source link

Deletar registros em cascata #64

Closed jeanmmlima closed 3 years ago

jeanmmlima commented 3 years ago
jeanmmlima commented 3 years ago

middleware

//middleware para registro que dependam do usuário imp 3d UsuarioImp3D.pre('deleteOne', function(next) { // 'this' is the client being removed. Provide callbacks here if you want // to be notified of the calls' result. const id = this.getQuery()['_id']; //console.log(id); ReservaImp3D.deleteMany({usuario3d: id}).exec(); next(); });