2018-04-01 05:43:26 -05:00
|
|
|
import config from '../../../../conf';
|
2018-04-01 14:01:34 -05:00
|
|
|
import { IRemoteUser } from '../../../../models/user';
|
2018-04-01 05:43:26 -05:00
|
|
|
|
2018-04-01 14:01:34 -05:00
|
|
|
export default ({ username }, followee: IRemoteUser) => ({
|
2018-04-01 05:43:26 -05:00
|
|
|
type: 'Follow',
|
|
|
|
actor: `${config.url}/@${username}`,
|
2018-04-01 14:01:34 -05:00
|
|
|
object: followee.account.uri
|
2018-04-01 05:43:26 -05:00
|
|
|
});
|