Sindbad~EG File Manager
let db,AppError,catchAsync,successResponse,failedResponse;_56c.x([["default",()=>_56c.o]]);_56c.w("../../model/index",[["default",["db"],function(v){db=v}]]);_56c.w("../../utils/apiError",[["default",["AppError"],function(v){AppError=v}]]);_56c.w("../../utils/catchAsync",[["default",["catchAsync"],function(v){catchAsync=v}]]);_56c.w("../../utils/responseFormat",[["successResponse",["successResponse"],function(v){successResponse=v}],["failedResponse",["failedResponse"],function(v){failedResponse=v}]]);
const index = catchAsync(async (req, res, next) => {
const query = req.query;
let allData = await db.TextMessage.find(query);
return successResponse(res, allData);
});
const add = catchAsync(async (req, res, next) => {
const textMessage = new db.TextMessage(req.body);
await textMessage.save();
return successResponse(
res,
textMessage,
"TextMessage saved successfully",
201
);
});
const edit = catchAsync(async (req, res, next) => {
let result = await db.TextMessage.findByIdAndUpdate(
{ _id: req.params.id },
{ $set: req.body },
{ new: true }
);
if (!result) {
return next(new AppError("No data found.", 404));
}
return successResponse(res, result, "TextMessage updated successfully");
});
const deleteData = catchAsync(async (req, res, next) => {
let lead = await db.TextMessage.findByIdAndDelete({ _id: req.params.id });
if (!lead) {
return next(new AppError("No data found.", 404));
}
return successResponse(res, lead, "TextMessage deleted successfully");
});
_56c.d({ index, add, edit, deleteData });
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists