ucap-doc/documents/업무/5월/3째주/0518.txt
Park Byung Eun 886d545ccb 0522 sync
2020-05-22 18:48:03 +09:00

24 lines
509 B
Plaintext

프로필 메뉴
전체보기
bulkinfo 연동
접속된 동료만 보기
온/오프라인 보기
infoUser$ = createEffect(() =>
this.actions$.pipe(
ofType(infoUser),
map((action) => action.req),
exhaustMap((req) =>
this.infoProtocolService.user(req).pipe(
map((res: UserResponse) => {
return infoUserSuccess({
res
});
}),
catchError((error) => of(infoUserFailure({ error })))
)
)
)
);