ef62497777
* Fix Outbox structure * Implement activity endpoint * Use in instead of or * Use in, addition
16 lines
486 B
TypeScript
16 lines
486 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}/activity`,
|
|
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
|
|
};
|
|
};
|