/
home
/
infinitibizsol
/
.trash
/
node_modules.8
/
.cache
/
esm
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.8/.cache/esm/e88b42b876b6a537.js
let db,AppError,catchAsync,successResponse;_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}]]); const index = catchAsync(async (req, res, next) => { const query = req.query; let allData = await db.UnderwritingQuestion.find(query); return successResponse(res, allData); }); const add = catchAsync(async (req, res, next) => { const underwritingQst = new db.UnderwritingQuestion(req.body); await underwritingQst.save(); return successResponse( res, underwritingQst, "UnderwritingQuestion saved successfully" ); }); const edit = catchAsync(async (req, res, next) => { let result = await db.UnderwritingQuestion.findByIdAndUpdate( { _id: req.params.id }, { $set: req.body }, { new: true } ); if (!result) { return next(new AppError("No data found.", 404)); } return successResponse( res, result, "UnderwritingQuestion updated successfully" ); }); const deleteData = catchAsync(async (req, res, next) => { let underwritingQst = await db.UnderwritingQuestion.findByIdAndDelete({ _id: req.params.id, }); if (!underwritingQst) { return next(new AppError("No data found.", 404)); } return successResponse( res, underwritingQst, "UnderwritingQuestion deleted successfully" ); }); _76b.d({ index, add, edit, deleteData });
Copyright ©2k19 -
Hexid
|
Tex7ure