summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/reject.ts
blob: 6d7d23708ac8d92952be644dabed36dbcb2b0514 (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: 'Reject',
	actor: `${config.url}/users/${user._id}`,
	object
});