This commit is contained in:
syuilo
2018-04-25 06:34:50 +09:00
parent 1a13c7e0b1
commit 1ba5dfd79c
4 changed files with 50 additions and 0 deletions

View File

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