user.route.js 466 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
import express from "express";
import userCtrl from "../controllers/user.controller.js";

const router = express.Router();

Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
6
router.route("/getUser/:id").get(userCtrl.getUser);
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
7
router.route("/login").post(userCtrl.login);
Kim, Chaerin's avatar
서버    
Kim, Chaerin committed
8
router.route("/signup").post(userCtrl.signup);
Kim, Chaerin's avatar
Kim, Chaerin committed
9

Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
10
11
12
13
14
15
router.route("/profileimg")
    .put(userCtrl.imgUpload, userCtrl.update)
router.route("/updateinfo")
    .put(userCtrl.updateinfo)

router.route("/").post(userCtrl.signup);
Kim, Chaerin's avatar
Kim, Chaerin committed
16
export default router;