summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/undo.ts
blob: bf90a3f28134b4f95538557ed9295dcd45e4bddf (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
});