mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
12 lines
402 B
TypeScript
12 lines
402 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const id = getRouterParam(h3, "id");
|
|
if (!id) throw createError({ statusCode: 400, statusMessage: "Invalid ID" });
|
|
|
|
const userId = await aclManager.getUserIdACL(h3, ["object:delete"]);
|
|
|
|
const result = await h3.context.objects.deleteWithPermission(id, userId);
|
|
return { success: result };
|
|
});
|