This commit is contained in:
crusader
2018-06-01 18:45:28 +09:00
parent 16ee0e825f
commit 46c1c55d61
169 changed files with 54 additions and 3890 deletions

View File

@@ -5,7 +5,7 @@ import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
import { ConfirmationService, Message } from 'primeng/primeng';
import { NoAuthProbe } from '@overflow/commons-typescript/model/noauth';
import { AuthContainerSelector } from '@overflow/shared/auth/store';
import { AuthSelector } from '@overflow/shared/auth/store';
import { DomainMember } from '@overflow/commons-typescript/model/domain';
import { NoAuthProbeService } from '../service/noauth-probe.service';
@@ -37,7 +37,7 @@ export class NoAuthProbeListComponent implements OnInit, OnDestroy {
tap(() => {
this.pending$ = of(true);
}),
select(AuthContainerSelector.selectDomainMember),
select(AuthSelector.selectDomainMember),
exhaustMap((domainMember: DomainMember) =>
this.noAuthProbeService.readAllByDomainID(domainMember.domain.id)
.pipe(
@@ -90,7 +90,7 @@ export class NoAuthProbeListComponent implements OnInit, OnDestroy {
).subscribe();
// this.noauthProbes$ = this.store.pipe(
// select(AuthContainerSelector.selectDomainMember),
// select(AuthSelector.selectDomainMember),
// exhaustMap((domainMember: DomainMember) =>
// this.noAuthProbeService.readAllByDomainID(domainMember.domain.id)
// .pipe(