Skip to content

Commit

Permalink
Refactor(gahee/club-board) : 대댓글 url reply-comment => comment/reply-c…
Browse files Browse the repository at this point in the history
…ommet으로 수정 modern-agile-team#508
  • Loading branch information
rugaheedori committed Jan 25, 2022
1 parent 5f9eabc commit 5bc54d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/apis/club-board/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ router.post(
commentCtrl.process.createCommentNum
);
router.post(
'/:clubNum/reply-comment',
'/:clubNum/comment/reply-comment',
apiAuth.apiAuth,
loginCheck.loginCheck,
commentCtrl.process.createReplyCommentNum
Expand All @@ -63,7 +63,7 @@ router.put(
commentCtrl.process.updateByCommentNum
);
router.put(
'/:clubNum/reply-comment',
'/:clubNum/comment/reply-comment',
apiAuth.apiAuth,
loginCheck.loginCheck,
commentCtrl.process.updateByReplyCommentNum
Expand All @@ -82,7 +82,7 @@ router.delete(
commentCtrl.process.deleteAllByGroupNum
);
router.delete(
'/:clubNum/reply-comment',
'/:clubNum/comment/reply-comment',
apiAuth.apiAuth,
loginCheck.loginCheck,
commentCtrl.process.deleteOneReplyCommentNum
Expand Down

0 comments on commit 5bc54d0

Please sign in to comment.