2018-08-25 14:12:44 +09:00
|
|
|
import config from '../../../config';
|
|
|
|
import { INote } from '../../../models/note';
|
|
|
|
|
|
|
|
export default (object: any, note: INote) => {
|
|
|
|
return {
|
|
|
|
id: `${config.url}/notes/${note._id}/activity`,
|
|
|
|
actor: `${config.url}/users/${note.userId}`,
|
|
|
|
type: 'Create',
|
|
|
|
published: note.createdAt.toISOString(),
|
|
|
|
object
|
|
|
|
};
|
|
|
|
};
|