X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fmain.ts;h=7caabe9141f38005127418feeb8505b6e3ca9b24;hb=de59c48f5f317018e3f746bbe4a7b7efe00109f2;hp=7c058e12fd165a77e993f602a1c23feb8f3857c0;hpb=def16d33d19153c6583fa8a30634760b3d64d34c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/main.ts b/client/src/main.ts index 7c058e12f..7caabe914 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -9,7 +9,7 @@ import { bootstrap } from '@angular/platform-browser-dynamic'; import { provideRouter } from '@angular/router'; import { routes } from './app/app.routes'; -import { AuthHttp, AuthService } from './app/shared'; +import { AuthHttp, AuthService, RestExtractor } from './app/shared'; import { AppComponent } from './app/app.component'; if (process.env.ENV === 'production') { @@ -26,6 +26,7 @@ bootstrap(AppComponent, [ }), AuthService, + RestExtractor, provideRouter(routes),