Skip to content

Commit

Permalink
refactor(InternalMeetingStatsService): 유저 객체로 부터 orgId를 가져와서 반환하도록 리팩토링
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Nov 21, 2024
1 parent f3799d6 commit b220078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public ApprovedStudyCountResponseDto getApprovedStudyCountByOrgId(Integer orgId)
Long approvedStudyCount = applyRepository.findApprovedStudyCountByOrgId(MeetingCategory.STUDY,
EnApplyStatus.APPROVE, user.getOrgId());

return ApprovedStudyCountResponseDto.of(orgId, approvedStudyCount);
return ApprovedStudyCountResponseDto.of(user.getOrgId(), approvedStudyCount);
}
}

0 comments on commit b220078

Please sign in to comment.