survey.route.ts 913 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import express from "express";
Jiwon Yoon's avatar
Jiwon Yoon committed
2
import { authCtrl, surveyCtrl, questionCtrl } from "../controllers";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
4
5

const router = express.Router();

6
router.route("/").get(authCtrl.requireLogin, surveyCtrl.getSurveys);
Jiwon Yoon's avatar
Jiwon Yoon committed
7
8
router.route("/:surveyId").get(surveyCtrl.getSurveyById);

Jiwon Yoon's avatar
Jiwon Yoon committed
9
router.route("/create").post(authCtrl.requireLogin, surveyCtrl.createSurvey);
10
11
12
router
  .route("/:surveyId")
  .get(surveyCtrl.getSurveyById);
Jiwon Yoon's avatar
Jiwon Yoon committed
13
router
Jiwon Yoon's avatar
Jiwon Yoon committed
14
15
16
  .route("/edit/:surveyId")
  .get(authCtrl.requireLogin, authCtrl.authenticate, surveyCtrl.getSurveyById)
  .put(authCtrl.requireLogin, authCtrl.authenticate, surveyCtrl.updateSurvey);
17
18
19
20
21
22
23
24
router
  .route("/delete/:surveyId")
  .delete(
    authCtrl.requireLogin,
    authCtrl.authenticate,
    surveyCtrl.deleteSurvey
  );

Jiwon Yoon's avatar
Jiwon Yoon committed
25
26
27
28
router
  .route("/:surveyId/questions")
  .post(authCtrl.requireLogin, questionCtrl.createQuestion);

Jiwon Yoon's avatar
Jiwon Yoon committed
29
router.param("surveyId", surveyCtrl.userBySurveyId);
Jiwon Yoon's avatar
Jiwon Yoon committed
30
31

export default router;