46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import define from "../../define.js";
|
|
import { makePaginationQuery } from "../../common/make-pagination-query.js";
|
|
import { GalleryPosts } from "../../../../models/index.js";
|
|
export const meta = {
|
|
tags: [
|
|
"gallery"
|
|
],
|
|
requireCredentialPrivateMode: true,
|
|
res: {
|
|
type: "array",
|
|
optional: false,
|
|
nullable: false,
|
|
items: {
|
|
type: "object",
|
|
optional: false,
|
|
nullable: false,
|
|
ref: "GalleryPost"
|
|
}
|
|
}
|
|
};
|
|
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: []
|
|
};
|
|
export default define(meta, paramDef, async (ps, me)=>{
|
|
const query = makePaginationQuery(GalleryPosts.createQueryBuilder("post"), ps.sinceId, ps.untilId).innerJoinAndSelect("post.user", "user");
|
|
const posts = await query.take(ps.limit).getMany();
|
|
return await GalleryPosts.packMany(posts, me);
|
|
});
|