Skip to content
Snippets Groups Projects
Commit 5d6ef4fa authored by syuilo's avatar syuilo
Browse files

oops

parent 64f69979
No related branches found
No related tags found
No related merge requests found
......@@ -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)
)));
});
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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment