OpenSlides/client/src/app/core/core-services/http-interceptors/index.ts

8 lines
262 B
TypeScript

import { HTTP_INTERCEPTORS } from '@angular/common/http';
import { StableInterceptorService } from './stable-interceptor.service';
export const httpInterceptorProviders = [
{ provide: HTTP_INTERCEPTORS, useClass: StableInterceptorService, multi: true }
];