mirror of
https://github.com/appwrite/appwrite
synced 2026-05-03 21:38:38 +00:00
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
|
|
module.exports = async(context) => {
|
||
|
|
context.log(context.req.body.$id);
|
||
|
|
context.log(context.req.body.name);
|
||
|
|
return context.res.empty();
|
||
|
|
};
|