Skip to content

Commit 499f65e

Browse files
committed
[FIX]: 서버 오류 해결
1 parent 5d8bd41 commit 499f65e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/src/routes/home/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ const ctrl = require("./home.ctrl");
77
router.get("/", ctrl.output.main);
88
router.post("/records", ctrl.process.addRecord);
99
router.get("/records", ctrl.process.getRecordByPage);
10-
router.update("/discover-count", ctrl.process.updateDiscoverCount);
10+
router.post("/counter", ctrl.process.increaseCounter);
11+
router.get("/counter", ctrl.process.getCounterValue);
12+
1113
module.exports = router;

0 commit comments

Comments
 (0)