2018-04-02 06:15:53 +02:00
|
|
|
import config from '../../../config';
|
2018-04-01 21:15:27 +02:00
|
|
|
import { IRemoteUser } from '../../../models/user';
|
2018-04-01 12:43:26 +02:00
|
|
|
|
2018-04-01 21:01:34 +02:00
|
|
|
export default ({ username }, followee: IRemoteUser) => ({
|
2018-04-01 12:43:26 +02:00
|
|
|
type: 'Follow',
|
|
|
|
actor: `${config.url}/@${username}`,
|
2018-04-01 21:01:34 +02:00
|
|
|
object: followee.account.uri
|
2018-04-01 12:43:26 +02:00
|
|
|
});
|