63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
|
프로틸 동기화
|
||
|
조직도
|
||
|
대화 리스트 (모바일에서 나의 프로필 변경 시)
|
||
|
|
||
|
72번 이슈
|
||
|
모바일에서 알림 끄기 시 PC대화방 오류
|
||
|
사전조건
|
||
|
1. 대화방 이름 변경한 그룹 대화방 있는 상태
|
||
|
2. 모바일 동시 로그인 상태
|
||
|
|
||
|
[검증절차]
|
||
|
1. 모바일 : 해당 그룹 대화방 진입
|
||
|
2. 모바일 : 대화방 관리 > 알림 끄기/켜기 선택
|
||
|
3. PC : 대화방 목록에서 해당 그룹 대화방 확인
|
||
|
|
||
|
[검증결과]
|
||
|
1. 설정한 대화방 이름으로 보여지지 않음
|
||
|
|
||
|
[검증환경]
|
||
|
PC_1.0.12 (운영서버)
|
||
|
|
||
|
엘봇
|
||
|
노티피케이션 문구 변경
|
||
|
다국어 엘봇 추가
|
||
|
대화방 리스트 엘봇 문구 변경
|
||
|
|
||
|
LF 로그인 로고
|
||
|
assets/images/logo/bg_logo_login.png
|
||
|
LF 탑바 로고
|
||
|
assets/images/logo/logo_topbar.png
|
||
|
LF 메인 인트로 로고
|
||
|
assets/images/logo/bg_logo_intro.png
|
||
|
|
||
|
|
||
|
this.queryProtocolService
|
||
|
.dataUser({
|
||
|
divCd: 'OPENPROF',
|
||
|
seq: userSeq,
|
||
|
senderCompanyCode: this.loginRes.userInfo.companyCode,
|
||
|
senderEmployeeType: this.loginRes.userInfo.employeeType
|
||
|
})
|
||
|
.pipe(
|
||
|
take(1),
|
||
|
map(res => {
|
||
|
if (!!res && !!res.userInfo) {
|
||
|
const result = this.dialogService.open<
|
||
|
ProfileDialogComponent,
|
||
|
ProfileDialogData,
|
||
|
ProfileDialogResult
|
||
|
>(ProfileDialogComponent, {
|
||
|
data: {
|
||
|
userInfo: res.userInfo
|
||
|
}
|
||
|
});
|
||
|
if (!!result) {
|
||
|
if (!!result.closeEvent && result.closeEvent === 'CHAT') {
|
||
|
this.onCancel();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
)
|
||
|
.subscribe();
|