From 78f8cdd802398d2c53556d6631d31c1a03332599 Mon Sep 17 00:00:00 2001 From: Jamie Date: Mon, 4 Dec 2017 08:24:28 +0000 Subject: [PATCH] Fixed #1763 --- src/Ombi/ClientApp/app/app.module.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Ombi/ClientApp/app/app.module.ts b/src/Ombi/ClientApp/app/app.module.ts index ab79b8fe9..4dfcd5443 100644 --- a/src/Ombi/ClientApp/app/app.module.ts +++ b/src/Ombi/ClientApp/app/app.module.ts @@ -12,12 +12,14 @@ import { JwtModule } from "@auth0/angular-jwt"; // Third Party //import { DragulaModule, DragulaService } from 'ng2-dragula/ng2-dragula'; +1import { CookieService } from "ng2-cookies"; import { NgbModule } from "@ng-bootstrap/ng-bootstrap"; import { TranslateLoader, TranslateModule } from "@ngx-translate/core"; import { TranslateHttpLoader } from "@ngx-translate/http-loader"; import { GrowlModule } from "primeng/components/growl/growl"; import { ButtonModule, CaptchaModule,ConfirmationService, ConfirmDialogModule, DataTableModule,DialogModule, SharedModule, TooltipModule } from "primeng/primeng"; + // Components import { AppComponent } from "./app.component"; @@ -26,6 +28,7 @@ import { LandingPageComponent } from "./landingpage/landingpage.component"; import { LoginComponent } from "./login/login.component"; import { ResetPasswordComponent } from "./login/resetpassword.component"; import { TokenResetPasswordComponent } from "./login/tokenresetpassword.component"; +import { CookieComponent } from "./auth/cookie.component"; // Services import { AuthGuard } from "./auth/auth.guard"; @@ -55,6 +58,7 @@ const routes: Routes = [ { path: "reset", component: ResetPasswordComponent }, { path: "token", component: TokenResetPasswordComponent }, { path: "landingpage", component: LandingPageComponent }, + { path: "auth/cookie", component: CookieComponent }, ]; // AoT requires an exported function for factories @@ -120,6 +124,7 @@ export function HttpLoaderFactory(http: HttpClient, platformLocation: PlatformLo LandingPageComponent, ResetPasswordComponent, TokenResetPasswordComponent, + CookieComponent, ], providers: [ RequestService, @@ -132,6 +137,7 @@ export function HttpLoaderFactory(http: HttpClient, platformLocation: PlatformLo LandingPageService, ConfirmationService, ImageService, + CookieService, ], bootstrap: [AppComponent], })