yumechi-no-kuni/src/server/api/endpoints/users/lists/list.ts
2020-02-15 21:33:32 +09:00

32 lines
696 B
TypeScript

import define from '../../../define';
import { UserLists } from '../../../../../models';
export const meta = {
desc: {
'ja-JP': '自分の作成したユーザーリスト一覧を取得します。'
},
tags: ['lists', 'account'],
requireCredential: true as const,
kind: 'read:account',
res: {
type: 'array' as const,
optional: false as const, nullable: false as const,
items: {
type: 'object' as const,
optional: false as const, nullable: false as const,
ref: 'UserList',
}
},
};
export default define(meta, async (ps, me) => {
const userLists = await UserLists.find({
userId: me.id,
});
return await Promise.all(userLists.map(x => UserLists.pack(x)));
});