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

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