summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/like.ts
blob: 061a10ba840b269993988944509e0171c7633f66 (plain)
1
2
3
4
5
6
7
8
import config from '../../../config';
import { ILocalUser } from '../../../models/user';

export default (user: ILocalUser, note) => ({
	type: 'Like',
	actor: `${config.url}/users/${user._id}`,
	object: note.uri ? note.uri : `${config.url}/notes/${note._id}`
});