2018-04-07 08:05:14 +00:00
|
|
|
import config from '../../../config';
|
2018-04-07 21:55:26 +00:00
|
|
|
import { ILocalUser } from '../../../models/user';
|
2018-06-18 05:28:43 +00:00
|
|
|
import { INote } from '../../../models/note';
|
2018-04-07 08:05:14 +00:00
|
|
|
|
2018-06-18 05:28:43 +00:00
|
|
|
export default (user: ILocalUser, note: INote, reaction: string) => ({
|
2018-04-08 06:15:22 +00:00
|
|
|
type: 'Like',
|
|
|
|
actor: `${config.url}/users/${user._id}`,
|
2018-04-23 06:27:01 +00:00
|
|
|
object: note.uri ? note.uri : `${config.url}/notes/${note._id}`,
|
|
|
|
_misskey_reaction: reaction
|
2018-04-08 06:15:22 +00:00
|
|
|
});
|