This commit is contained in:
syuilo 2018-03-28 19:09:13 +09:00
parent 64f6997910
commit 5d6ef4fa30
2 changed files with 3 additions and 3 deletions

View file

@ -39,6 +39,6 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
// Serialize
res(await Promise.all(favorites.map(async favorite =>
await pack(favorite.post)
await pack(favorite.postId)
)));
});

View file

@ -1,10 +1,10 @@
import * as mongo from 'mongodb';
import db from '../../db/mongodb';
const Favorites = db.get<IFavorites>('favorites');
const Favorites = db.get<IFavorite>('favorites');
export default Favorites;
export type IFavorites = {
export type IFavorite = {
_id: mongo.ObjectID;
createdAt: Date;
userId: mongo.ObjectID;