feat: add console.log
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2023-02-21 14:53:35 +01:00
parent 71167ffa1f
commit f0827c992b
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ module.exports = Self => {
});
Self.post = async ctx => {
console.log(ctx.req.body);
return ctx.req.body;
};
};