2018-08-16 16:40:08 -05:00
|
|
|
import config from '../../../config';
|
|
|
|
import { INote } from '../../../models/note';
|
|
|
|
|
|
|
|
export default (object: any, note: INote) => {
|
|
|
|
const attributedTo = `${config.url}/users/${note.userId}`;
|
|
|
|
|
|
|
|
return {
|
2018-09-07 15:24:55 -05:00
|
|
|
id: `${config.url}/notes/${note._id}/activity`,
|
2018-08-25 00:12:44 -05:00
|
|
|
actor: `${config.url}/users/${note.userId}`,
|
2018-08-16 16:40:08 -05:00
|
|
|
type: 'Announce',
|
|
|
|
published: note.createdAt.toISOString(),
|
|
|
|
to: ['https://www.w3.org/ns/activitystreams#Public'],
|
|
|
|
cc: [attributedTo, `${attributedTo}/followers`],
|
|
|
|
object
|
|
|
|
};
|
|
|
|
};
|