blob: 2be65448d1c22484164000bcce518d60e1877216 [file] [log] [blame]
Skip Wonnell2c977e22018-03-01 08:30:15 -06001/*
2============LICENSE_START==========================================
3===================================================================
4Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
Arundathi Patil465d29e2018-07-18 15:41:05 +05305
6Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
Skip Wonnell2c977e22018-03-01 08:30:15 -06007===================================================================
8
9Unless otherwise specified, all software contained herein is licensed
10under the Apache License, Version 2.0 (the License);
11you may not use this software except in compliance with the License.
12You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16Unless required by applicable law or agreed to in writing, software
17distributed under the License is distributed on an "AS IS" BASIS,
18WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19See the License for the specific language governing permissions and
20limitations under the License.
Skip Wonnell2c977e22018-03-01 08:30:15 -060021============LICENSE_END============================================
22*/
23
Arundathi Patil465d29e2018-07-18 15:41:05 +053024import { BrowserModule } from '@angular/platform-browser';
25import { NgModule } from '@angular/core';
26import { FormsModule } from '@angular/forms';
27import { SimpleNotificationsModule } from 'angular2-notifications';
28import { BootstrapModalModule } from 'ng2-bootstrap-modal';
29import { HomeModule } from './home/home.module';
30import { AppComponent } from './app.component';
31import { AppRoutingModule } from './app.routing';
32import { SharedModule } from './shared/shared.module';
33import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
34import { HashLocationStrategy, LocationStrategy } from '@angular/common';
35import { NoopAnimationsModule } from '@angular/platform-browser/animations';
36import { RouterModule } from '@angular/router';
37import { TestComponent } from './test/test.component';
38import { AboutUsComponent } from './about-us/aboutus.component';
39import { NgProgressModule } from 'ngx-progressbar';
40import { LoginGuardService } from './vnfs/LoginGuardService/Login-guard-service';
41import { ConfirmComponent } from './shared/confirmModal/confirm.component';
Skip Wonnell2c977e22018-03-01 08:30:15 -060042
43@NgModule({
Arundathi Patil465d29e2018-07-18 15:41:05 +053044 declarations: [AppComponent, TestComponent, AboutUsComponent, ConfirmComponent],
Skip Wonnell2c977e22018-03-01 08:30:15 -060045 imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(),
Arundathi Patil465d29e2018-07-18 15:41:05 +053046 NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule],
Skip Wonnell2c977e22018-03-01 08:30:15 -060047 exports: [RouterModule],
Arundathi Patil465d29e2018-07-18 15:41:05 +053048 providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }, LoginGuardService],
49 entryComponents: [ConfirmComponent],
Skip Wonnell2c977e22018-03-01 08:30:15 -060050
51 bootstrap: [AppComponent]
52})
53
54export class AppModule {
Mohamed Asgar Samiulla(ma926a)d7dffc22018-04-02 19:00:49 +053055}