yumechi-no-kuni/src/server/api/endpoints/users/lists/list.ts

22 lines
523 B
TypeScript
Raw Normal View History

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