File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,8 @@ has a single `intercept()` method. Here is a simple interceptor which does nothi
273
273
import {Injectable } from ' @angular/core' ;
274
274
import {HttpEvent , HttpInterceptor , HttpHandler , HttpRequest } from ' @angular/common/http' ;
275
275
276
+ import {Observable } from ' rxjs/Observable' ;
277
+
276
278
@Injectable ()
277
279
export class NoopInterceptor implements HttpInterceptor {
278
280
intercept (req: HttpRequest< any> , next: HttpHandler): Observable< HttpEvent< any>> {
@@ -297,6 +299,8 @@ Simply declaring the `NoopInterceptor` above doesn't cause your app to use it. Y
297
299
import {NgModule } from ' @angular/core' ;
298
300
import {HTTP_INTERCEPTORS } from ' @angular/common/http' ;
299
301
302
+ import {NoopInterceptor } from ' noop.interceptor.ts' ;
303
+
300
304
@NgModule ({
301
305
providers: [{
302
306
provide: HTTP_INTERCEPTORS ,
You can’t perform that action at this time.
0 commit comments