Merge tag '13.14.2' into io

This commit is contained in:
まっちゃとーにゅ 2023-07-27 18:21:05 +09:00
commit 3343ba8b8a
No known key found for this signature in database
GPG key ID: 6AFBBF529601C1DB
46 changed files with 2221 additions and 326 deletions

View file

@ -60,7 +60,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}
query.limit(ps.limit);
query.skip(ps.offset);
query.offset(ps.offset);
const tickets = await query.getMany();

View file

@ -105,7 +105,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}
query.limit(ps.limit);
query.skip(ps.offset);
query.offset(ps.offset);
const users = await query.getMany();