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