This commit is contained in:
syuilo 2018-04-05 19:19:00 +09:00
parent fd87a63e57
commit 2a80fdeafe
3 changed files with 38 additions and 25 deletions

View file

@ -18,6 +18,10 @@ export default async (actor, activity: IObject): Promise<void> => {
await follow(actor, activity);
break;
case 'Accept':
// noop
break;
case 'Undo':
await undo(actor, activity);
break;