diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-03-06 12:11:34 -0800 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-03-06 12:12:36 -0800 |
commit | eedac3e312c66499ca5ff9d72388c31b25813225 (patch) | |
tree | 4cc2f22a0a36ba97823b70fe27ed667383173f0a /src/app/app.module.ts | |
parent | 611c9da62c2e266f9facd97dc9f340ce311060a3 (diff) |
Revert "multiple asible servers support"
Some functionality was accidentally removed
This reverts commit 611c9da62c2e266f9facd97dc9f340ce311060a3.
Change-Id: I1aefbbc0ede8cdda59acc8bdf7b047e506aad813
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1510
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r-- | src/app/app.module.ts | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts index d142ac2..fcff1d5 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -22,34 +22,36 @@ limitations under the License. ============LICENSE_END============================================ */ -import {BrowserModule} from '@angular/platform-browser'; -import {NgModule} from '@angular/core'; -import {FormsModule} from '@angular/forms'; -import {SimpleNotificationsModule} from 'angular2-notifications'; -import {HomeModule} from './home/home.module'; -import {AppComponent} from './app.component'; -import {AppRoutingModule} from './app.routing'; -import {SharedModule} from './shared/shared.module'; -import {NgbModule} from '@ng-bootstrap/ng-bootstrap'; -import {HashLocationStrategy, LocationStrategy} from '@angular/common'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {RouterModule} from '@angular/router'; -import {TestComponent} from './test/test.component'; -import {AboutUsComponent} from './about-us/aboutus.component'; -import {NgProgressModule} from 'ngx-progressbar'; -import {LoginGuardService} from './vnfs/LoginGuardService/Login-guard-service'; -import {Ng2Bs3ModalModule} from 'ng2-bs3-modal/ng2-bs3-modal'; +import { BrowserModule } from '@angular/platform-browser'; +import { NgModule } from '@angular/core'; +import { FormsModule } from '@angular/forms'; +import { SimpleNotificationsModule } from 'angular2-notifications'; +import { BootstrapModalModule } from 'ng2-bootstrap-modal'; +import { HomeModule } from './home/home.module'; +import { AppComponent } from './app.component'; +import { AppRoutingModule } from './app.routing'; +import { SharedModule } from './shared/shared.module'; +import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; +import { HashLocationStrategy, LocationStrategy } from '@angular/common'; +import { NoopAnimationsModule } from '@angular/platform-browser/animations'; +import { RouterModule } from '@angular/router'; +import { TestComponent } from './test/test.component'; +import { AboutUsComponent } from './about-us/aboutus.component'; +import { NgProgressModule } from 'ngx-progressbar'; +import { LoginGuardService } from './vnfs/LoginGuardService/Login-guard-service'; +import { ConfirmComponent } from './shared/confirmModal/confirm.component'; import { NgxSpinnerModule } from 'ngx-spinner'; @NgModule({ - declarations: [AppComponent, TestComponent, AboutUsComponent], + declarations: [AppComponent, TestComponent, AboutUsComponent, ConfirmComponent], imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(), - NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, Ng2Bs3ModalModule, NgxSpinnerModule], + NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule, NgxSpinnerModule], exports: [RouterModule], - providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}, LoginGuardService], + providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }, LoginGuardService], + entryComponents: [ConfirmComponent], bootstrap: [AppComponent] }) export class AppModule { -}
\ No newline at end of file +} |