Skip to content

Commit

Permalink
Merge pull request #532 from JNU-econovation/fix/#531
Browse files Browse the repository at this point in the history
[BE/FIX] 빌드 오류 해결
  • Loading branch information
hwangdaesun authored Oct 9, 2024
2 parents bae1cfb + e896ef3 commit c17e675
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion BE/exceed/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ task copyDocument(type: Copy) { //(8) from의 파일을 into로 복사
build { //(9) build 시 copyDocument 실행
dependsOn copyDocument
}

tasks.named('compileJava') {
dependsOn 'spotlessApply'
}

jar {
enabled = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ public void redirect(@RequestParam String email, HttpServletResponse response) {
description = "비밀번호를 찾을 때 사용한다. 단, 비밀번호 찾기 버튼을 누르는 것이지 실제로는 새로운 비밀번호로 수정한다.")
@PatchMapping("/members/find-password")
@ApiErrorExceptionsExample(FindPassword_updatePasswordExceptionDocs.class)
public ApiResponse<CustomBody<Void>> findPassword(@RequestBody @Valid FindPasswordRequest request) {
public ApiResponse<CustomBody<Void>> findPassword(
@RequestBody @Valid FindPasswordRequest request) {
checkCodeUsecase.execute(request.email(), request.code());
updatePasswordUsecase.execute(request.email(), request.newPassword());
return ApiResponseGenerator.success(HttpStatus.OK);
Expand Down

0 comments on commit c17e675

Please sign in to comment.