Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
import define from "../../../define.js";
|
||||
import { ApiError } from "../../../error.js";
|
||||
import { GalleryPosts } from "../../../../../models/index.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"gallery"
|
||||
],
|
||||
requireCredential: false,
|
||||
requireCredentialPrivateMode: true,
|
||||
errors: {
|
||||
noSuchPost: {
|
||||
message: "No such post.",
|
||||
code: "NO_SUCH_POST",
|
||||
id: "1137bf14-c5b0-4604-85bb-5b5371b1cd45"
|
||||
}
|
||||
},
|
||||
res: {
|
||||
type: "object",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
ref: "GalleryPost"
|
||||
}
|
||||
};
|
||||
export const paramDef = {
|
||||
type: "object",
|
||||
properties: {
|
||||
postId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
}
|
||||
},
|
||||
required: [
|
||||
"postId"
|
||||
]
|
||||
};
|
||||
export default define(meta, paramDef, async (ps, me)=>{
|
||||
const post = await GalleryPosts.findOneBy({
|
||||
id: ps.postId
|
||||
});
|
||||
if (post == null) {
|
||||
throw new ApiError(meta.errors.noSuchPost);
|
||||
}
|
||||
return await GalleryPosts.pack(post, me);
|
||||
});
|
||||
Reference in New Issue
Block a user