Skip to content

Commit

Permalink
Merge pull request #20 from jwpark1211/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
jwpark1211 authored May 16, 2024
2 parents ae92ba3 + b471dba commit 7484097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ResponseEntity<? extends BasicResponse> save(
}

@Operation(summary = "이메일 중복 확인")
@PostMapping(path = "/email/{email}/unique")
@GetMapping(path = "/email/{email}/unique")
public ResponseEntity<? extends BasicResponse> isEmailUnique(
@PathVariable("email") String email
){
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/capstone/bookitty/domain/dto/MemberDTO.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static IdResponse of (Member member){
@AllArgsConstructor
@NoArgsConstructor
public static class BoolResponse{
private boolean isTrue;
private boolean isUnique;
}

@Getter
Expand Down

0 comments on commit 7484097

Please sign in to comment.