fix: missing req.body when parsing ActivityPub requests

This commit is contained in:
Julian Lam
2023-06-26 16:15:25 -04:00
parent 9dfa1b7209
commit e6753ce5db
3 changed files with 12 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ Controller.getInbox = async (req, res) => {
};
Controller.postInbox = async (req, res) => {
console.log(req.body);
console.log('received', req.body);
res.sendStatus(201);
};