Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkJunGyu26 committed Nov 25, 2023
1 parent ebd49e0 commit 01f91bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/route/qjRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const jwt = require('../middleware/jwtMiddleware');
const gptMiddleware = require('../middleware/gptMiddleware');

// 1. 입력 없이 내 정보 바탕으로 gpt call API
router.get('/myJob', gptMiddleware, jwt, qj.getRecommend);
router.get('/myJob', gptMiddleware, qj.getRecommend);

// 2. 관심 직무 입력해서 gpt call API
router.post('/newJob', gptMiddleware, jwt, qj.postInputJobRecommend);
router.post('/newJob', gptMiddleware, qj.postInputJobRecommend);

module.exports = router;

0 comments on commit 01f91bb

Please sign in to comment.