blob: 1ee1418fce317c61d7becdeb21ef51e3bd58bf92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import config from '../../../config';
import { INote } from '../../../models/note';
export default (object: any, note: INote) => {
const activity = {
id: `${config.url}/notes/${note._id}/activity`,
actor: `${config.url}/users/${note.userId}`,
type: 'Create',
published: note.createdAt.toISOString(),
object
} as any;
if (object.to) activity.to = object.to;
if (object.cc) activity.cc = object.cc;
return activity;
};
|