forked from mirror/misskey
fcfb5ef0a3
* wip
* ✌️
* use ajv/dist/core
* revert try
* clean up
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import define from '../../define';
|
|
import { Pages } from '@/models/index';
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
export const meta = {
|
|
tags: ['account', 'pages'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'read:pages',
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Page',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const query = makePaginationQuery(Pages.createQueryBuilder('page'), ps.sinceId, ps.untilId)
|
|
.andWhere(`page.userId = :meId`, { meId: user.id });
|
|
|
|
const pages = await query
|
|
.take(ps.limit)
|
|
.getMany();
|
|
|
|
return await Pages.packMany(pages);
|
|
});
|