Skip to content

Commit

Permalink
[fix] 받은 요청 리스트 senderId 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tmdtmdqorekf committed May 22, 2024
1 parent 8159f70 commit d49d157
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ public List<MatchReceivedInfoDto> getMatchReceivedInfo(Long receiverId) {
User sender = userRepository.findById(senderId)
.orElseThrow(() -> new CustomException(ErrorCode.USER_NOT_FOUND));
SenderInfoDto senderInfo = mapper.map(sender, SenderInfoDto.class);
senderInfo.setSenderId(senderId);
senderInfo.setCompany(customMapper.toCompanyDto(sender.getCompany()));

MatchReceivedInfoDto res = new MatchReceivedInfoDto();
Expand Down

0 comments on commit d49d157

Please sign in to comment.