mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 14:33:08 +02:00
Create Note activity にも toとcc
This commit is contained in:
parent
ffcb2f755c
commit
68a7661f08
1 changed files with 7 additions and 2 deletions
|
@ -2,11 +2,16 @@ import config from '../../../config';
|
||||||
import { INote } from '../../../models/note';
|
import { INote } from '../../../models/note';
|
||||||
|
|
||||||
export default (object: any, note: INote) => {
|
export default (object: any, note: INote) => {
|
||||||
return {
|
const activity = {
|
||||||
id: `${config.url}/notes/${note._id}/activity`,
|
id: `${config.url}/notes/${note._id}/activity`,
|
||||||
actor: `${config.url}/users/${note.userId}`,
|
actor: `${config.url}/users/${note.userId}`,
|
||||||
type: 'Create',
|
type: 'Create',
|
||||||
published: note.createdAt.toISOString(),
|
published: note.createdAt.toISOString(),
|
||||||
object
|
object
|
||||||
};
|
} as any;
|
||||||
|
|
||||||
|
if (object.to) activity.to = object.to;
|
||||||
|
if (object.cc) activity.cc = object.cc;
|
||||||
|
|
||||||
|
return activity;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue