e14509574d
* resolver type / fix updateFeatured * type ApObject * fix strange type * AP Activity * Collection Activityが失敗したらとりあえず無視
8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import { IObject } from './type';
|
|
import { IRemoteUser } from '../../models/entities/user';
|
|
import { performActivity } from './kernel';
|
|
|
|
export default async (actor: IRemoteUser, activity: IObject): Promise<void> => {
|
|
await performActivity(actor, activity);
|
|
};
|