diff --git a/back/models/account.js b/back/models/account.js index 28b426862..7cc196852 100644 --- a/back/models/account.js +++ b/back/models/account.js @@ -12,15 +12,13 @@ module.exports = Self => { message: `A client with that Web User name already exists` }); - Self.observe('before save', async function(ctx, next) { + Self.observe('before save', async function(ctx) { if (ctx.currentInstance && ctx.currentInstance.id && ctx.data && ctx.data.password) ctx.data.password = md5(ctx.data.password); - if (ctx.data && (ctx.data.name || ctx.data.active)) { + if (!ctx.isNewInstance && ctx.data && (ctx.data.name || ctx.data.active)) { let instance = JSON.parse(JSON.stringify(ctx.currentInstance)); let userId = ctx.options.accessToken.userId; - console.log('ctx.data', ctx.data); - console.log('ctx.currentInstance', ctx.currentInstance); let logRecord = { originFk: ctx.currentInstance.id, userFk: userId, @@ -31,8 +29,6 @@ module.exports = Self => { }; await Self.app.models.ClientLog.create(logRecord); } - - next(); }); Self.remoteMethod('getCurrentUserData', {