Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
import define from "../../../define.js";
|
||||
import { ApiError } from "../../../error.js";
|
||||
import { GalleryPosts } from "../../../../../models/index.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"gallery"
|
||||
],
|
||||
requireCredential: true,
|
||||
kind: "write:gallery",
|
||||
errors: {
|
||||
noSuchPost: {
|
||||
message: "No such post.",
|
||||
code: "NO_SUCH_POST",
|
||||
id: "ae52f367-4bd7-4ecd-afc6-5672fff427f5"
|
||||
}
|
||||
}
|
||||
};
|
||||
export const paramDef = {
|
||||
type: "object",
|
||||
properties: {
|
||||
postId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
}
|
||||
},
|
||||
required: [
|
||||
"postId"
|
||||
]
|
||||
};
|
||||
export default define(meta, paramDef, async (ps, user)=>{
|
||||
const post = await GalleryPosts.findOneBy({
|
||||
id: ps.postId,
|
||||
userId: user.id
|
||||
});
|
||||
if (post == null) {
|
||||
throw new ApiError(meta.errors.noSuchPost);
|
||||
}
|
||||
await GalleryPosts.delete(post.id);
|
||||
});
|
||||
Reference in New Issue
Block a user