Skip to content

Commit

Permalink
Merge pull request #475 from RADAR-base/attributes
Browse files Browse the repository at this point in the history
Fixed addition of attributes when creating new user
  • Loading branch information
yatharthranjan authored Jul 12, 2024
2 parents 04e7edd + d901224 commit a43ee84
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public User dtoToEntity(FcmUserDto fcmUserDto) {
.setUserMetrics(getValidUserMetrics(fcmUserDto))
.setEnrolmentDate(fcmUserDto.getEnrolmentDate())
.setTimezone(fcmUserDto.getTimezone())
.setLanguage(fcmUserDto.getLanguage());
.setLanguage(fcmUserDto.getLanguage())
.setAttributes(fcmUserDto.getAttributes());
}

@Override
Expand Down

0 comments on commit a43ee84

Please sign in to comment.