24 lines
509 B
Plaintext
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 })))
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
);
|