팔로우 & 언팔로우(게시글상에서)
팔로우기능
router.patch('/:id/follow',isLoggedIn,async(req,res,next)=>{
try {
} catch (e) {
console.error(e);
next(e);
}
});언팔로우도 같은 방식으로 구현해 줄 수 있습니다.
Last updated