60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
|
|
group.component.ts
|
|
subject unsubscribe
|
|
list-item.component.ts
|
|
봇대화방
|
|
1:1 대화방
|
|
멀티방
|
|
대화방명이 있을 때
|
|
대화방명이 없을 때
|
|
|
|
대상 수정사항
|
|
설정 알림 on
|
|
1. 앱 포커스
|
|
대화방 오픈
|
|
다른 대화방 노티
|
|
알림이 켜져있는 경우
|
|
블링크
|
|
|
|
조직도
|
|
2. 앱 blur || background
|
|
블링크
|
|
|
|
1.
|
|
|
|
LF 수정사항
|
|
비밀번호 만기 팝업 후 비밀번호 찾기 사이트로 이동
|
|
|
|
gnbMenuIndexSubscription
|
|
fileInfoListSubscription
|
|
isBulkInfoSubscription
|
|
eventInfoStatusSubscription
|
|
eventListSubscription
|
|
eventRemainedSubscription
|
|
searchEventListProcessingSubscription
|
|
userStatusListSubscription
|
|
userInfoListSubscription
|
|
roomInfoSubscription
|
|
|
|
if (this.roomInfoSubject.value.roomType === RoomType.Single) {
|
|
return this.userInfoListSubject.value.filter((roomUserInfo) => {
|
|
return this.loginResSubject.value.userSeq !== roomUserInfo.seq;
|
|
});
|
|
} else {
|
|
return this.userInfoListSubject.value
|
|
.filter((roomUserInfo) => {
|
|
return (
|
|
this.loginResSubject.value.userSeq !== roomUserInfo.seq &&
|
|
roomUserInfo.isJoinRoom
|
|
);
|
|
})
|
|
.sort((a, b) => (a.name < b.name ? -1 : a.name > b.name ? 1 : 0));
|
|
}
|
|
|
|
107842
|
|
107844
|
|
107843
|
|
107841
|
|
107826
|
|
107846
|