17
packages/backend/src/remote/activitypub/renderer/create.ts
Normal file
17
packages/backend/src/remote/activitypub/renderer/create.ts
Normal file
@@ -0,0 +1,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;
|
||||
};
|
Reference in New Issue
Block a user