misskey/src/remote/activitypub/renderer/like.ts

10 lines
215 B
TypeScript
Raw Normal View History

2018-04-07 10:05:14 +02:00
import config from '../../../config';
2018-04-07 19:30:37 +02:00
export default (user, 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
};
};