Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
import { Clips } from "../../../../models/index.js";
|
||||
import define from "../../define.js";
|
||||
import { makePaginationQuery } from "../../common/make-pagination-query.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"users",
|
||||
"clips"
|
||||
],
|
||||
requireCredentialPrivateMode: true,
|
||||
description: "Show all clips this user owns.",
|
||||
res: {
|
||||
type: "array",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
items: {
|
||||
type: "object",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
ref: "Clip"
|
||||
}
|
||||
}
|
||||
};
|
||||
export const paramDef = {
|
||||
type: "object",
|
||||
properties: {
|
||||
userId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
},
|
||||
limit: {
|
||||
type: "integer",
|
||||
minimum: 1,
|
||||
maximum: 100,
|
||||
default: 10
|
||||
},
|
||||
sinceId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
},
|
||||
untilId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
}
|
||||
},
|
||||
required: [
|
||||
"userId"
|
||||
]
|
||||
};
|
||||
export default define(meta, paramDef, async (ps, user)=>{
|
||||
const query = makePaginationQuery(Clips.createQueryBuilder("clip"), ps.sinceId, ps.untilId).andWhere("clip.userId = :userId", {
|
||||
userId: ps.userId
|
||||
}).andWhere("clip.isPublic = true");
|
||||
const clips = await query.take(ps.limit).getMany();
|
||||
return await Clips.packMany(clips);
|
||||
});
|
||||
Reference in New Issue
Block a user