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

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