blob: ff0840b9e6715a32b3d722a3aef651df206b3f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import config from '@/config';
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;
};
|