Files
litlyx/dashboard/server/api/snapshot/delete.delete.ts
2025-11-28 16:49:20 +01:00

24 lines
630 B
TypeScript

import { ProjectModel } from "@schema/project/ProjectSchema";
import { ProjectSnapshotModel } from "@schema/project/ProjectSnapshot";
export default defineEventHandler(async event => {
const ctx = await getRequestContext(event, 'pid', 'permission:member');
const { project_id } = ctx;
const body = await readBody(event);
const { id: snapshotId } = body;
if (!snapshotId) return setResponseStatus(event, 400, 'id is required');
const deletation = await ProjectSnapshotModel.deleteOne({
project_id: project_id,
_id: snapshotId
});
return { ok: deletation.acknowledged };
});