UNPKG

loopback-component-mongodb-mt-automigrate

Version:
13 lines (11 loc) 269 B
'use strict'; module.exports = function (Automigrate) { Automigrate.observe('before save', (context, next) => { if (context.instance) { context.instance.updated = new Date(); } else { context.data.updated = new Date(); } next(); }); };