mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
24 lines
630 B
TypeScript
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 };
|
|
|
|
|
|
}); |