49dbd7f9d2
* In Follow Accept/Reject, send previous received id * In Follow Accept/Reject, send Activity.actor
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import config from '../../../config';
|
|
import { ILocalUser } from '../../../models/user';
|
|
|
|
export default (object: any, user: ILocalUser) => ({
|
|
type: 'Accept',
|
|
actor: `${config.url}/users/${user._id}`,
|
|
object
|
|
});
|