Skip to content
Snippets Groups Projects
Unverified Commit 2e8e5f68 authored by syuilo's avatar syuilo Committed by GitHub
Browse files

Merge pull request #1352 from akihikodaki/inbox

Respond with 202 for inbox request
parents fea2e549 c83bb3b8
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ app.post('/@:user/inbox', async (req, res) => {
outbox: req.body,
}).save();
return res.sendStatus(200);
return res.status(202).end();
});
export default app;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment