Files
cloud-cap-samples/bookshop/handlers/createdAuthor.ON.js
2022-07-26 09:47:56 +02:00

5 lines
114 B
JavaScript

async function run() {
let {Author} = req.data
Author.placeOfBirth += ' --- modified in custom event'
}
run()