Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
survey
Commits
6e77fd3a
Commit
6e77fd3a
authored
Jul 11, 2022
by
Lee SeoYeon
Browse files
주석처리
parent
c854de41
Changes
4
Show 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) => {
return
data
;
}
export
const
getSurvey
=
async
()
=>
{
const
{
data
}
=
await
axios
.
get
(
`
${
baseUrl
}
/surveys/profile`
)
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
src/controllers/survey.controller.ts
View file @
6e77fd3a
...
...
@@ -8,7 +8,7 @@ export const createSurvey = asyncWrap(async (req, res) => {
return
res
.
json
(
newSurvey
);
});
export
const
getSurveys
=
asyncWrap
(
async
(
req
,
res
)
=>
{
const
surveys
=
await
surveyDb
.
getSurveys
();
return
res
.
json
(
surveys
);
});
//
export const getSurveys = asyncWrap(async (req, res) => {
//
const surveys = await surveyDb.getSurveys();
//
return res.json(surveys);
//
});
src/db/survey.db.ts
View file @
6e77fd3a
...
...
@@ -5,7 +5,7 @@ export const createSurvey = async (survey: ISurvey) => {
return
newSurvey
;
};
export
const
getSurveys
=
async
()
=>
{
const
surveys
=
await
Survey
.
find
({}).
populate
(
"
questions
"
)
return
surveys
}
\ 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
src/routes/survey.route.ts
View file @
6e77fd3a
...
...
@@ -7,7 +7,7 @@ router
.
route
(
"
/create
"
)
.
post
(
surveyCtrl
.
createSurvey
);
router
.
route
(
"
/profile
"
)
.
get
(
surveyCtrl
.
getSurveys
)
//
router
//
.route("/profile")
//
.get(surveyCtrl.getSurveys)
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