Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
survey
Commits
6e77fd3a
Commit
6e77fd3a
authored
Jul 11, 2022
by
Lee SeoYeon
Browse files
주석처리
parent
c854de41
Changes
4
Hide whitespace changes
Inline
Side-by-side
frontend/src/apis/survey.api.ts
View file @
6e77fd3a
...
@@ -8,7 +8,7 @@ export const createSurvey = async (survey:SurveyType) => {
...
@@ -8,7 +8,7 @@ export const createSurvey = async (survey:SurveyType) => {
return
data
;
return
data
;
}
}
export
const
getSurvey
=
async
()
=>
{
// export const getSurvey = async () => {
const
{
data
}
=
await
axios
.
get
(
`
${
baseUrl
}
/surveys/profile`
)
// const {data} = await axios.get(`${baseUrl}/surveys/profile`)
return
data
;
// return data;
}
// }
\ No newline at end of file
\ No newline at end of file
src/controllers/survey.controller.ts
View file @
6e77fd3a
...
@@ -8,7 +8,7 @@ export const createSurvey = asyncWrap(async (req, res) => {
...
@@ -8,7 +8,7 @@ export const createSurvey = asyncWrap(async (req, res) => {
return
res
.
json
(
newSurvey
);
return
res
.
json
(
newSurvey
);
});
});
export
const
getSurveys
=
asyncWrap
(
async
(
req
,
res
)
=>
{
//
export const getSurveys = asyncWrap(async (req, res) => {
const
surveys
=
await
surveyDb
.
getSurveys
();
//
const surveys = await surveyDb.getSurveys();
return
res
.
json
(
surveys
);
//
return res.json(surveys);
});
//
});
src/db/survey.db.ts
View file @
6e77fd3a
...
@@ -5,7 +5,7 @@ export const createSurvey = async (survey: ISurvey) => {
...
@@ -5,7 +5,7 @@ export const createSurvey = async (survey: ISurvey) => {
return
newSurvey
;
return
newSurvey
;
};
};
export
const
getSurveys
=
async
()
=>
{
// export const getSurveys = async () => {
const
surveys
=
await
Survey
.
find
({}).
populate
(
"
questions
"
)
// const surveys = await Survey.find({}).populate("questions")
return
surveys
// return surveys
}
// }
\ No newline at end of file
\ No newline at end of file
src/routes/survey.route.ts
View file @
6e77fd3a
...
@@ -7,7 +7,7 @@ router
...
@@ -7,7 +7,7 @@ router
.
route
(
"
/create
"
)
.
route
(
"
/create
"
)
.
post
(
surveyCtrl
.
createSurvey
);
.
post
(
surveyCtrl
.
createSurvey
);
router
//
router
.
route
(
"
/profile
"
)
//
.route("/profile")
.
get
(
surveyCtrl
.
getSurveys
)
//
.get(surveyCtrl.getSurveys)
export
default
router
;
export
default
router
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment