blob: 04aa993a9181cef0d88f5b6d276182bee839a02f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import config from '@/config/index';
import { Note } from '@/models/entities/note';
export default (object: any, note: Note) => {
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;
};
|