49dbd7f9d2
* In Follow Accept/Reject, send previous received id * In Follow Accept/Reject, send Activity.actor
14 lines
454 B
TypeScript
14 lines
454 B
TypeScript
import config from '../../../config';
|
|
import { IUser, isLocalUser } from '../../../models/user';
|
|
|
|
export default (follower: IUser, followee: IUser, requestId?: string) => {
|
|
const follow = {
|
|
type: 'Follow',
|
|
actor: isLocalUser(follower) ? `${config.url}/users/${follower._id}` : follower.uri,
|
|
object: isLocalUser(followee) ? `${config.url}/users/${followee._id}` : followee.uri
|
|
} as any;
|
|
|
|
if (requestId) follow.id = requestId;
|
|
|
|
return follow;
|
|
};
|