Skip to content

Commit

Permalink
bug fix : 문제 복습 paremeter 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KiSeungMin committed Oct 12, 2024
1 parent f4988b2 commit 2003785
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import lombok.*;

import java.time.LocalDateTime;
import java.util.List;

@Data
@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public ResponseEntity<?> deleteProblem(
public ResponseEntity<?> addRepeatCount(
Authentication authentication,
@RequestHeader("problemId") Long problemId,
@RequestParam("image")MultipartFile solveImage
@RequestParam(value = "solveImage", required = false) MultipartFile solveImage
){
try{
Long userId = (Long) authentication.getPrincipal();
Expand Down

0 comments on commit 2003785

Please sign in to comment.