Skip to content

Commit

Permalink
HOTIFX: 정기 모임의 멤버수 반환 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Sep 18, 2024
1 parent bda2eaa commit 59d70c4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ default Integer generateCode() {
return new Random().nextInt(9000) + 1000;
}

// 차후 필히 리팩토링 할 것. 정기모임의 멤버수 로직 변경
/*
차후 필히 리팩토링 할 것
-> 정기 모임의 참여하는 인원의 멤버수를 어떻게 관리할지.
해당 코드는 일시적인 대안책임
*/
default Integer getMemberCount(Meeting meeting) {
return (int)meeting.getAttendances().stream()
.filter(attendance -> !attendance.getUser().getStatus().equals(Status.BANNED))
Expand Down

0 comments on commit 59d70c4

Please sign in to comment.