mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-02 06:15:54 +02:00
* 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: 'Reject',
|
|
actor: `${config.url}/users/${user._id}`,
|
|
object
|
|
});
|