- Load Events

- Edit Events
- When a field is updated: undate also memory list record

- Duplicate Event
This commit is contained in:
Paolo Arena
2019-10-20 22:45:09 +02:00
parent 93eae51ab8
commit 1a1348c563
5 changed files with 83 additions and 60 deletions

View File

@@ -12,5 +12,16 @@ module.exports = {
return false
}
return true;
},
doOtherThingsAfterDuplicated: function (tablename, rec) {
try {
if (tablename === 'users') {
// Delete also all the subscribers record of this User
}
} catch (e) {
return false
}
return true;
}
};