Skip to content

Commit

Permalink
Fix: CreateUserRequest profileImgUrl 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
yerim216 authored Jun 5, 2024
1 parent b39ed32 commit 96d6239
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 @@ -13,7 +13,6 @@ public static class CreateUserRequest {
private String token;
private String nickName;
private String walletAddress;
private String profileImgUrl;
private Boolean isAllowLocationInfo;
private Boolean isAllowAdInfo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static User toEntity(String email, CreateUserRequest createUserRequest){
return User.builder()
.nickname(createUserRequest.getNickName())
.email(email)
.profileImageUrl(createUserRequest.getProfileImgUrl())
.profileImageUrl(null)
.walletAddress(createUserRequest.getWalletAddress())
.isAllowAdNotification(createUserRequest.getIsAllowAdInfo())
.isAllowLocationInfo(createUserRequest.getIsAllowLocationInfo())
Expand Down

0 comments on commit 96d6239

Please sign in to comment.