misskey/src/server/api/endpoints/users/lists/list.ts
2018-04-25 06:34:50 +09:00

14 lines
316 B
TypeScript

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))));
});