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

export default (object: any, user: { id: User['id']; host: null }) => ({
	type: 'Delete',
	actor: `${config.url}/users/${user.id}`,
	object
});