Skip to content

Commit

Permalink
Debug : 변수명 수정 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaen-ing committed Jan 22, 2025
1 parent 7b9f346 commit 143c7fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ public ResponseEntity<ApiResponse<Object>> finishQuiz(
@PostMapping("/learning/quiz/{quizId}/scrap")
public ResponseEntity<ApiResponse<?>> scrapQuiz(
final @AuthenticationPrincipal CustomUserDetails currentUser,
final @PathVariable("quizId") long conceptId) {
final @PathVariable("quizId") long quizId) {

quizService.scrapQuiz(currentUser.getId(), conceptId);
quizService.scrapQuiz(currentUser.getId(), quizId);
return ResponseEntity.status(HttpStatus.OK).body(ApiResponse.EMPTY_RESPONSE);
}

Expand Down

0 comments on commit 143c7fc

Please sign in to comment.