blob: 523cb4f1ad3a64d931525ac34c43a90df1b09ae4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import config from '../../../config';
import { ILocalUser } from '../../../models/user';
import { INote } from '../../../models/note';
export default (user: ILocalUser, note: INote, reaction: string) => ({
type: 'Like',
actor: `${config.url}/users/${user._id}`,
object: note.uri ? note.uri : `${config.url}/notes/${note._id}`,
_misskey_reaction: reaction
});
|