mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 06:59:01 +01:00
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
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}`
|
|
});
|