Skip to content

Commit

Permalink
feat: 유저 fcm 토큰 저장 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
summit45 committed Nov 21, 2023
1 parent 98ef21f commit 5e26df7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ private void setUserData(User user, GlobalRegion globalRegion, UserAddressReques
user.setAddress(dto.getAddress());
user.setDetailAddress(dto.getDetailAddress());
user.setPostalCode(dto.getPostalCode());
user.setFcmToken(dto.getFcmToken());
}

private PostalAddressDto findPostalAddress(GeocodingAddressDto geocodingAddressDto) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ public class UserAddressRequest {
String address;
String detailAddress;
String postalCode;
String fcmToken;
}

0 comments on commit 5e26df7

Please sign in to comment.