payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
31 lines (30 loc) • 1 kB
JavaScript
// @ts-strict-ignore
import { status as httpStatus } from 'http-status';
import { deleteOperation } from '../operations/delete.js';
export const deleteHandler = async (incomingReq)=>{
// We cannot import the addDataAndFileToRequest utility here from the 'next' package because of dependency issues
// However that utility should be used where possible instead of manually appending the data
let data;
try {
data = await incomingReq.json();
} catch (error) {
data = {};
}
const reqWithData = incomingReq;
if (data) {
reqWithData.data = data;
reqWithData.json = ()=>Promise.resolve(data);
}
const result = await deleteOperation({
key: reqWithData.routeParams?.key,
req: reqWithData,
user: reqWithData.user
});
return Response.json({
...result,
message: reqWithData.t('general:deletedSuccessfully')
}, {
status: httpStatus.OK
});
};
//# sourceMappingURL=delete.js.map