fd8f8162e1
* schema typeの型計算量を削減 * reduce some type error * wip * fix * clean up * more shrink
44 lines
849 B
TypeScript
44 lines
849 B
TypeScript
import define from '../../define';
|
|
import { Apps } from '@/models/index';
|
|
|
|
export const meta = {
|
|
tags: ['account', 'app'],
|
|
|
|
requireCredential: true,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'App',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
offset: { type: 'integer', default: 0 },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const query = {
|
|
userId: user.id,
|
|
};
|
|
|
|
const apps = await Apps.find({
|
|
where: query,
|
|
take: ps.limit,
|
|
skip: ps.offset,
|
|
});
|
|
|
|
return await Promise.all(apps.map(app => Apps.pack(app, user, {
|
|
detail: true,
|
|
})));
|
|
});
|