Skip to content

Commit

Permalink
remove: image url update X
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed Apr 30, 2024
1 parent 140e629 commit 9f9875d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,11 @@
public class MemberUpdateDto {
@Schema(description = "변경할 닉네임")
private String nickname;
@Schema(description = "변경할 이미지 S3 Url")
private String imageUrl;

public MemberServiceDto toServiceDto(String email) {
return MemberServiceDto.builder()
.email(email)
.nickname(this.nickname)
.imageUrl(this.imageUrl)
.build();
}
}

0 comments on commit 9f9875d

Please sign in to comment.