Skip to content

Commit 6dc4174

Browse files
Merge pull request #1491 from timdeschryver/fix/rjx-imports
fix: RxJS imports to be compatible with RxJS 6
2 parents b0f5b12 + 6942f3e commit 6dc4174

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

projects/angular-auth-oidc-client/src/lib/config/auth-well-known/auth-well-known.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Injectable } from '@angular/core';
2-
import { catchError, Observable, of, tap, throwError } from 'rxjs';
2+
import { Observable, of, throwError } from 'rxjs';
3+
import { catchError, tap } from 'rxjs/operators';
34
import { EventTypes } from '../../public-events/event-types';
45
import { PublicEventsService } from '../../public-events/public-events.service';
56
import { StoragePersistenceService } from '../../storage/storage-persistence.service';

projects/angular-auth-oidc-client/src/lib/oidc.security.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Injectable } from '@angular/core';
2-
import { BehaviorSubject, catchError, map, Observable, switchMap, tap, throwError } from 'rxjs';
2+
import { BehaviorSubject, Observable, throwError } from 'rxjs';
3+
import { catchError, map, switchMap, tap } from 'rxjs/operators';
34
import { AuthOptions } from './auth-options';
45
import { AuthenticatedResult } from './auth-state/auth-result';
56
import { AuthStateService } from './auth-state/auth-state.service';

0 commit comments

Comments
 (0)