2018-08-25 07:12:44 +02:00
|
|
|
import config from '../../../config';
|
|
|
|
import { INote } from '../../../models/note';
|
|
|
|
|
|
|
|
export default (object: any, note: INote) => {
|
2018-08-25 07:23:51 +02:00
|
|
|
const activity = {
|
2018-08-25 07:12:44 +02:00
|
|
|
id: `${config.url}/notes/${note._id}/activity`,
|
|
|
|
actor: `${config.url}/users/${note.userId}`,
|
|
|
|
type: 'Create',
|
|
|
|
published: note.createdAt.toISOString(),
|
|
|
|
object
|
2018-08-25 07:23:51 +02:00
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (object.to) activity.to = object.to;
|
|
|
|
if (object.cc) activity.cc = object.cc;
|
|
|
|
|
|
|
|
return activity;
|
2018-08-25 07:12:44 +02:00
|
|
|
};
|