Skip to content

Commit

Permalink
🐛 Fix: ci/cd 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
lej8924 authored Jul 15, 2024
1 parent 5e52fe0 commit 6acd787
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public ResponseEntity<ResponseTemplate<Object>> getMyQuestions(@AuthenticationPr

List<MyQuestionDto> myQuestionDtos;
myQuestionDtos = myPageService.getMyQuestions(userId);
List


return ResponseEntity
.status(HttpStatus.OK)
Expand All @@ -58,7 +58,7 @@ public ResponseEntity<ResponseTemplate<Object>> updateQuestion(@PathVariable("id

return ResponseEntity
.status(HttpStatus.OK)
.body(ResponseTemplate.success("질문이 성공적으로 수정되었습니다."));
.body(ResponseTemplate.from("질문이 성공적으로 수정되었습니다."));
}


Expand Down

0 comments on commit 6acd787

Please sign in to comment.