From 24471c4e87baeeaf43f7bee53f24ea9163fc7367 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 27 Sep 2016 13:47:01 +0300 Subject: [PATCH] Step 19.22: Updated the NgModule imports --- client/imports/app/app.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/imports/app/app.module.ts b/client/imports/app/app.module.ts index af364acfb..8a061ac58 100644 --- a/client/imports/app/app.module.ts +++ b/client/imports/app/app.module.ts @@ -11,6 +11,7 @@ import { routes, ROUTES_PROVIDERS } from './app.routes'; import { PARTIES_DECLARATIONS } from './parties'; import { SHARED_DECLARATIONS } from './shared'; import { MaterialModule } from "@angular/material"; +import { AUTH_DECLARATIONS } from "./auth/index"; @NgModule({ imports: [ @@ -28,7 +29,8 @@ import { MaterialModule } from "@angular/material"; declarations: [ AppComponent, ...PARTIES_DECLARATIONS, - ...SHARED_DECLARATIONS + ...SHARED_DECLARATIONS, + ...AUTH_DECLARATIONS ], providers: [ ...ROUTES_PROVIDERS