Commit ebcab5cd authored by Lee SeoYeon's avatar Lee SeoYeon
Browse files

.

parent 5cd5064a
......@@ -7,8 +7,3 @@ export const createSurvey = async (survey:SurveyType) => {
const {data} = await axios.post(`${baseUrl}/surveys/create`, {...survey})
return data;
}
\ No newline at end of file
// export const getSurvey = async () => {
// const {data} = await axios.get(`${baseUrl}/surveys/profile`)
// return data;
// }
\ No newline at end of file
......@@ -7,8 +7,3 @@ export const createSurvey = asyncWrap(async (req, res) => {
const newSurvey = await surveyDb.createSurvey(survey);
return res.json(newSurvey);
});
\ No newline at end of file
// export const getSurveys = asyncWrap(async (req, res) => {
// const surveys = await surveyDb.getSurveys();
// return res.json(surveys);
// });
......@@ -4,8 +4,3 @@ export const createSurvey = async (survey: ISurvey) => {
const newSurvey = await Survey.create(survey);
return newSurvey;
};
\ No newline at end of file
// export const getSurveys = async () => {
// const surveys = await Survey.find({}).populate("questions")
// return surveys
// }
\ No newline at end of file
......@@ -7,7 +7,4 @@ router
.route("/create")
.post(surveyCtrl.createSurvey);
// router
// .route("/profile")
// .get(surveyCtrl.getSurveys)
export default router;
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