mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 21:06:27 +01:00
e14509574d
* resolver type / fix updateFeatured * type ApObject * fix strange type * AP Activity * Collection Activityが失敗したらとりあえず無視
7 lines
262 B
TypeScript
7 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);
|
|
};
|