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

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