rudeshark.net/src/remote/activitypub/renderer/like.ts

11 lines
278 B
TypeScript
Raw Normal View History

2018-04-07 10:05:14 +02:00
import config from '../../../config';
2018-04-07 23:55:26 +02:00
import { ILocalUser } from '../../../models/user';
2018-04-07 10:05:14 +02:00
2018-04-07 23:55:26 +02:00
export default (user: ILocalUser, note) => {
2018-04-07 10:05:14 +02:00
return {
type: 'Like',
actor: `${config.url}/@${user.username}`,
2018-04-07 19:30:37 +02:00
object: note.uri ? note.uri : `${config.url}/notes/${note._id}`
2018-04-07 10:05:14 +02:00
};
};