Skip to content

Commit

Permalink
fix: 이미지 기본 url 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
eckrin committed Oct 7, 2023
1 parent 9002fac commit 0e2b3e2
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 @@ -38,7 +38,7 @@ public class SignUpRequestDto {

@Enumerated(EnumType.STRING)
private PreferJob jobPriority3;
@NotBlank

private String imageUrl;

}
1 change: 0 additions & 1 deletion src/main/java/com/groupD/server/service/AuthService.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public void signUp(SignUpRequestDto dto) {
.id(null)
.email(dto.getEmail())
.password(passwordEncoder.encode(dto.getPassword()))
.imageUrl(dto.getImageUrl())
.role(dto.getRole())
.disability(dto.getDisability())
.phonenum(dto.getPhonenum())
Expand Down

0 comments on commit 0e2b3e2

Please sign in to comment.