Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
import define from "../../define.js";
|
||||
import { NoteFavorites } from "../../../../models/index.js";
|
||||
import { makePaginationQuery } from "../../common/make-pagination-query.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"account",
|
||||
"notes",
|
||||
"favorites"
|
||||
],
|
||||
requireCredential: true,
|
||||
kind: "read:favorites",
|
||||
res: {
|
||||
type: "array",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
items: {
|
||||
type: "object",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
ref: "NoteFavorite"
|
||||
}
|
||||
}
|
||||
};
|
||||
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, user)=>{
|
||||
const query = makePaginationQuery(NoteFavorites.createQueryBuilder("favorite"), ps.sinceId, ps.untilId).andWhere("favorite.userId = :meId", {
|
||||
meId: user.id
|
||||
}).leftJoinAndSelect("favorite.note", "note");
|
||||
const favorites = await query.take(ps.limit).getMany();
|
||||
return await NoteFavorites.packMany(favorites, user);
|
||||
});
|
||||
Reference in New Issue
Block a user