mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 23:53:09 +02:00
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
import config from '../../../config';
|
|
import { INote } from '../../../models/note';
|
|
|
|
export default (object: any, note: INote) => {
|
|
const attributedTo = `${config.url}/users/${note.userId}`;
|
|
|
|
return {
|
|
id: `${config.url}/notes/${note._id}`,
|
|
actor: `${config.url}/users/${note.userId}`,
|
|
type: 'Announce',
|
|
published: note.createdAt.toISOString(),
|
|
to: ['https://www.w3.org/ns/activitystreams#Public'],
|
|
cc: [attributedTo, `${attributedTo}/followers`],
|
|
object
|
|
};
|
|
};
|