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

export default ({ username }, followee: IRemoteUser) => ({
	type: 'Follow',
	actor: `${config.url}/@${username}`,
	object: followee.account.uri
});