Skip to content

Commit

Permalink
minor change:
Browse files Browse the repository at this point in the history
  • Loading branch information
Prathamesh483 committed Dec 24, 2024
1 parent e2a260a commit ac88d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ router.get("/getresume", authMiddleware, async (req, res) => {
return res.status(200).json(data);
});

router.get("/Recruitergetresume", authMiddleware, async (req, res) => {
router.post("/Recruitergetresume", authMiddleware, async (req, res) => {
const {userId} = req.body;
const data = await service.getResume(userId);
return res.status(200).json(data);
Expand Down

0 comments on commit ac88d88

Please sign in to comment.