Skip to content

Commit 0e5aa38

Browse files
Fix: Moved status code to basic details
1 parent 0af832f commit 0e5aa38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

controllers/previewformsData.controller.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ const getbasicdetails_sql = `SELECT
4747
forms.age,
4848
forms.mobile,
4949
forms.district,
50+
forms.status,
5051
forms.block,
5152
forms.panchayat,
5253
forms.hamlet,
@@ -184,8 +185,8 @@ const getbasicdetails_sql = `SELECT
184185
exports.getpreviewspecificformData = asyncHandler( async (req, res) => {
185186
const id = req.query.form_id;
186187
const form_type = req.query.form_type;
187-
//console.log("Form ID",id);
188-
//console.log("Form type",typeof(form_type));
188+
// console.log("Form ID",id);
189+
// console.log("Form type",typeof(form_type));
189190
const connection = await db.getConnection();
190191

191192
try {

0 commit comments

Comments
 (0)