yumechi-no-kuni/src/server/api/endpoints/users/lists/list.ts
2018-06-18 09:54:53 +09:00

14 lines
390 B
TypeScript

import UserList, { pack } from '../../../../../models/user-list';
import { ILocalUser } from '../../../../../models/user';
/**
* Add a user to a user list
*/
module.exports = async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
// Fetch lists
const userLists = await UserList.find({
userId: me._id,
});
res(await Promise.all(userLists.map(x => pack(x))));
});