summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/remove.ts
blob: ed840be751be48b5b03a9f77b90b1e1f70c24b92 (plain)
1
2
3
4
5
6
7
8
9
import config from '../../../config';
import { ILocalUser } from '../../../models/user';

export default (user: ILocalUser, target: any, object: any) => ({
	type: 'Remove',
	actor: `${config.url}/users/${user._id}`,
	target,
	object
});