survey.route.ts 738 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 } 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
router.route("/create").post(authCtrl.requireLogin, surveyCtrl.createSurvey);
8
9
10
router
  .route("/:surveyId")
  .get(surveyCtrl.getSurveyById);
Jiwon Yoon's avatar
Jiwon Yoon committed
11
router
Jiwon Yoon's avatar
Jiwon Yoon committed
12
13
14
  .route("/edit/:surveyId")
  .get(authCtrl.requireLogin, authCtrl.authenticate, surveyCtrl.getSurveyById)
  .put(authCtrl.requireLogin, authCtrl.authenticate, surveyCtrl.updateSurvey);
15
16
17
18
19
20
21
22
router
  .route("/delete/:surveyId")
  .delete(
    authCtrl.requireLogin,
    authCtrl.authenticate,
    surveyCtrl.deleteSurvey
  );

Jiwon Yoon's avatar
Jiwon Yoon committed
23
router.param("surveyId", surveyCtrl.userBySurveyId);
Jiwon Yoon's avatar
Jiwon Yoon committed
24
25

export default router;