mizzkey/src/server/api/endpoints/users/lists/list.ts

22 lines
523 B
TypeScript
Raw Normal View History

2018-04-24 23:34:50 +02:00
import UserList, { pack } from '../../../../../models/user-list';
2018-06-18 02:54:53 +02:00
import { ILocalUser } from '../../../../../models/user';
2018-04-24 23:34:50 +02:00
2018-07-16 21:36:44 +02:00
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '自分の作成したユーザーリスト一覧を取得します。'
2018-07-16 21:36:44 +02:00
},
requireCredential: true,
kind: 'account-read'
};
2018-07-05 19:58:29 +02:00
export default async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-04-24 23:34:50 +02:00
// Fetch lists
const userLists = await UserList.find({
userId: me._id,
});
res(await Promise.all(userLists.map(x => pack(x))));
});