/
home
/
infinitibizsol
/
.trash
/
node_modules.8
/
.cache
/
esm
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.8/.cache/esm/8d11c87276b6a537.js
let db,AppError,catchAsync,successResponse,failedResponse;_76b.x([["default",()=>_76b.o]]);_76b.w("../../model/index",[["default",["db"],function(v){db=v}]]);_76b.w("../../utils/apiError",[["default",["AppError"],function(v){AppError=v}]]);_76b.w("../../utils/catchAsync",[["default",["catchAsync"],function(v){catchAsync=v}]]);_76b.w("../../utils/responseFormat",[["successResponse",["successResponse"],function(v){successResponse=v}],["failedResponse",["failedResponse"],function(v){failedResponse=v}]]); const validateDuplicateEntry = async (policy_id) => { let document = await db.PriorPolicyInfo.findOne({ policy_id }); if (document) return true; return false; }; const index = catchAsync(async (req, res, next) => { const query = req.query; let allData = await db.PriorPolicyInfo.find(query); return successResponse(res, allData); }); const add = catchAsync(async (req, res, next) => { const isDuplicate = await validateDuplicateEntry(req.body.policy_id); if (isDuplicate) { return next(new AppError("Duplicate entry is not allowed.", 404)); } const priorPolicyInfo = new db.PriorPolicyInfo(req.body); await priorPolicyInfo.save(); return successResponse( res, priorPolicyInfo, "PriorPolicyInfo saved successfully" ); }); const edit = catchAsync(async (req, res, next) => { let result = await db.PriorPolicyInfo.findByIdAndUpdate( { _id: req.params.id }, { $set: req.body }, { new: true } ); if (!result) { return next(new AppError("No data found.", 404)); } return successResponse(res, result, "PriorPolicyInfo updated successfully"); }); const deleteData = catchAsync(async (req, res, next) => { let priorPolicyInfo = await db.PriorPolicyInfo.findByIdAndDelete({ _id: req.params.id, }); if (!priorPolicyInfo) { return next(new AppError("No data found.", 404)); } return successResponse( res, priorPolicyInfo, "PriorPolicyInfo deleted successfully" ); }); _76b.d({ index, add, edit, deleteData });
Copyright ©2k19 -
Hexid
|
Tex7ure