yumechi-no-kuni/src/remote/activitypub/renderer/follow.ts

9 lines
260 B
TypeScript
Raw Normal View History

2018-04-01 23:15:53 -05:00
import config from '../../../config';
2018-04-07 15:02:50 -05:00
import { IRemoteUser, ILocalUser } from '../../../models/user';
2018-04-01 05:43:26 -05:00
2018-04-07 15:02:50 -05:00
export default (follower: ILocalUser, followee: IRemoteUser) => ({
2018-04-01 05:43:26 -05:00
type: 'Follow',
2018-04-08 01:15:22 -05:00
actor: `${config.url}/users/${follower._id}`,
2018-04-07 13:58:11 -05:00
object: followee.uri
2018-04-01 05:43:26 -05:00
});