Skip to content

Commit

Permalink
Merge pull request #48 from TeamGuttok/GUTTOK-88
Browse files Browse the repository at this point in the history
GUTTOK-88 : swagger 인증번호 검증 부분 설명 수정
  • Loading branch information
o-tao authored Feb 15, 2025
2 parents d161451 + ed21719 commit d019598
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ public ResponseEntity<ApiResponse<ResponseMessages>> signout(HttpServletRequest
return ApiResponse.success(USER_LOGOUT_SUCCESS);
}

@Operation(summary = "인증번호 검증", description = "인증번호 검증 요청")
@Operation(summary = "비밀번호 찾기 인증번호 검증", description = "비밀번호 찾기 인증번호 검증 요청")
@PostMapping("/certification-number")
public ResponseEntity<ApiResponse<ResponseMessages>> userCertificationNumber(@Valid @RequestBody UserCertificationNumberRequestDto userCertificationNumberRequestDto, HttpServletRequest request) {
userCertificationNumberService.responseSession(userCertificationNumberRequestDto.getCertificationNumberDto(), request);
return ApiResponse.success(CERTIFICATION_NUMBER_SUCCESS);
}

@Operation(summary = "이메일 검증", description = "이메일 검증 요청")
@Operation(summary = "회원가입 이메일 인증번호 검증", description = "회원가입 이메일 인증번호 검증 요청")
@PostMapping("/email-verification")
public ResponseEntity<ApiResponse<ResponseMessages>> userEmailVerification(@Valid @RequestBody UserCertificationNumberRequestDto userCertificationNumberRequestDto, HttpServletRequest request) {
userCertificationNumberService.createUnauthenticatedSession(userCertificationNumberRequestDto.getCertificationNumberDto(), request);
Expand Down

0 comments on commit d019598

Please sign in to comment.