Commit 6262a322 authored by Jiwon Yoon's avatar Jiwon Yoon
Browse files

createSurvey 오류

parent 4a36252e
......@@ -14,6 +14,7 @@ export const createSurvey = asyncWrap(
let survey = req.body;
survey.user = userId;
console.log("survey body", survey);
delete survey._id;
const newSurvey = await surveyDb.createSurvey(survey);
return res.json(newSurvey);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment