Skip to content

Commit

Permalink
[fix] #122 엔드포인트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hysong4u committed Feb 29, 2024
1 parent 2a36c86 commit f862889
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public ResponseEntity<SuccessResponse<?>> getRanking(@PathVariable Long roomId)
return SuccessResponse.ok(ranking);
}

@PostMapping("/tournament/end/{roomId}")
@PostMapping("/tournament-end/{roomId}")
public ResponseEntity<SuccessResponse<?>> endTournament(@UserId Long userId, @PathVariable Long roomId) {
giftService.endTournament(roomId);
return SuccessResponse.created(null);
Expand Down

0 comments on commit f862889

Please sign in to comment.