wip
This commit is contained in:
13
src/server/api/endpoints/users/lists/list.ts
Normal file
13
src/server/api/endpoints/users/lists/list.ts
Normal 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))));
|
||||
});
|
Reference in New Issue
Block a user