feat: Like(Note) and Undo(Like); federating likes

This commit is contained in:
Julian Lam
2024-02-01 15:59:29 -05:00
parent 94361721b1
commit 607c4623c7
9 changed files with 108 additions and 20 deletions

View File

@@ -93,6 +93,11 @@ Controller.postInbox = async (req, res) => {
break;
}
case 'Like': {
await activitypub.inbox.like(req);
break;
}
case 'Follow': {
await activitypub.inbox.follow(req);
break;