mirror of
https://github.com/appwrite/appwrite
synced 2026-04-25 07:27:16 +00:00
5 lines
145 B
JavaScript
5 lines
145 B
JavaScript
module.exports = async(context) => {
|
|
context.log(context.req.body.$id);
|
|
context.log(context.req.body.name);
|
|
return context.res.empty();
|
|
};
|