oops
This commit is contained in:
parent
64f6997910
commit
5d6ef4fa30
@ -39,6 +39,6 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
|
|||||||
|
|
||||||
// Serialize
|
// Serialize
|
||||||
res(await Promise.all(favorites.map(async favorite =>
|
res(await Promise.all(favorites.map(async favorite =>
|
||||||
await pack(favorite.post)
|
await pack(favorite.postId)
|
||||||
)));
|
)));
|
||||||
});
|
});
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
import * as mongo from 'mongodb';
|
import * as mongo from 'mongodb';
|
||||||
import db from '../../db/mongodb';
|
import db from '../../db/mongodb';
|
||||||
|
|
||||||
const Favorites = db.get<IFavorites>('favorites');
|
const Favorites = db.get<IFavorite>('favorites');
|
||||||
export default Favorites;
|
export default Favorites;
|
||||||
|
|
||||||
export type IFavorites = {
|
export type IFavorite = {
|
||||||
_id: mongo.ObjectID;
|
_id: mongo.ObjectID;
|
||||||
createdAt: Date;
|
createdAt: Date;
|
||||||
userId: mongo.ObjectID;
|
userId: mongo.ObjectID;
|
||||||
|
Loading…
Reference in New Issue
Block a user