mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 15:18:59 +01: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}`
|
||
|
};
|
||
|
};
|