summaryrefslogtreecommitdiffstats
path: root/portal-FE-os
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-02-04 21:48:49 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-02-04 16:25:33 +0000
commit096d3ac4c7b98f98eb20978cf1f07ff5cc91d492 (patch)
treed61d7794261e875d3ce1f310081823192607c2f2 /portal-FE-os
parent099ece77f49e4a6bc4d9b35ef03a5e0f33bf8384 (diff)
Made Header and Footer generic
Changes made to make header and footer generic by taking required values from environment.ts Issue-ID: PORTAL-795 Change-Id: I03303e10ef763767d12d16d2ee6454f81a250562 Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'portal-FE-os')
-rw-r--r--portal-FE-os/src/app/app.module.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/portal-FE-os/src/app/app.module.ts b/portal-FE-os/src/app/app.module.ts
index a7b267fb..a99c2da6 100644
--- a/portal-FE-os/src/app/app.module.ts
+++ b/portal-FE-os/src/app/app.module.ts
@@ -45,7 +45,6 @@ import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HeaderInterceptor } from './shared/interceptors/header-interceptor';
import { CookieService } from 'ngx-cookie-service';
-import { FooterComponent } from './footer/footer.component';
@NgModule({
@@ -56,7 +55,7 @@ import { FooterComponent } from './footer/footer.component';
HttpClientModule,
AppRoutingModule
],
- declarations: [AppComponent, FooterComponent],
+ declarations: [AppComponent],
providers: [CookieService,{
provide: HTTP_INTERCEPTORS,
useClass: HeaderInterceptor,