innercircle-byebye / ft_transcendence-back

Backend for ft_transcendence (nestjs)
1 stars 0 forks source link

전체 채널 목록 조회시 사용자 인원 확인 기능 추가 #71

Closed sungyongcho closed 2 years ago

sungyongcho commented 2 years ago

front에서 온 요청사항으로 전체 채널 조회시 현재 채널에 참여한 인원수를 확인하도록 API 응답을 변경 하였습니다.

기능 구현시 기존 getChannelMembers 의 결과 object 의 length 를 사용하는 방식에서,

getCurrentChannelMemberCount 함수를 이용해, DB에 현재 채널 인원 을 COUNT(getCount() 사용) 처리 하는 함수를 만들어 이용하였습니다.

(해당 브랜치에 추가로 channel 응답 DTO에 isPrivate, currentChannelMemberCount 를 표기하도록 업데이트 하였습니다)

close #70