iceshrimp-legacy/packages/backend/src/remote/activitypub/renderer/create.ts
syuilo d071d18dd7
refactor: Use ESM (#8358)
* wip

* wip

* fix

* clean up

* Update tsconfig.json

* Update activitypub.ts

* wip
2022-02-27 11:07:39 +09:00

18 lines
440 B
TypeScript

import config from '@/config/index.js';
import { Note } from '@/models/entities/note.js';
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;
};