Skip to content

Commit

Permalink
[fix] 유저 정보 불러오기 쿼리 조건 변경 #82
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns committed Aug 2, 2023
1 parent 4bd3861 commit 35adadc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public GetUserProfileResponse execute() {
Long userId = SecurityUtil.getCurrentUserId();
validateExecution(userId);
User user = userAdaptor.findById(userId);
List<Archiving> archivingList = archivingAdaptor.findAllByUserId(userId);
List<Archiving> archivingList = archivingAdaptor.queryArchivingByUserId(userId);
return userMapper.toGetUserProfileResponse(archivingList, user);
}

Expand Down

0 comments on commit 35adadc

Please sign in to comment.