iceshrimp/src/remote/activitypub/renderer/remove.ts
2021-03-23 17:43:07 +09:00

9 lines
238 B
TypeScript

import config from '@/config';
import { ILocalUser } from '../../../models/entities/user';
export default (user: ILocalUser, target: any, object: any) => ({
type: 'Remove',
actor: `${config.url}/users/${user.id}`,
target,
object
});