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

export default (blocker?: ILocalUser, blockee?: IRemoteUser) => ({
	type: 'Block',
	actor: `${config.url}/users/${blocker._id}`,
	object: blockee.uri
});