mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-25 06:43:07 +02:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
import config from '../../../config';
|
||
|
|
||
|
export default (user, post) => {
|
||
|
return {
|
||
|
type: 'Like',
|
||
|
actor: `${config.url}/@${user.username}`,
|
||
|
object: post.uri ? post.uri : `${config.url}/posts/${post._id}`
|
||
|
};
|
||
|
};
|