diff options
author | Dan Timoney <dtimoney@att.com> | 2019-06-25 18:57:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-06-25 18:57:41 +0000 |
commit | ed124819a2c928d895ba275d51eadc97afdf5a09 (patch) | |
tree | 9e4d2180c54c968f1d2093731a892c70c2f17353 /cds-ui/client/src/app/common/shared/shared.module.ts | |
parent | eba8ca3300290460f3df5e984b6de92d06de222f (diff) | |
parent | 3bc6917ecd7c3fb22c8a65d5279179fc2bb4d6aa (diff) |
Merge "Replace windows alert with Notification component"
Diffstat (limited to 'cds-ui/client/src/app/common/shared/shared.module.ts')
-rw-r--r-- | cds-ui/client/src/app/common/shared/shared.module.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cds-ui/client/src/app/common/shared/shared.module.ts b/cds-ui/client/src/app/common/shared/shared.module.ts index b036f5967..39e4e433f 100644 --- a/cds-ui/client/src/app/common/shared/shared.module.ts +++ b/cds-ui/client/src/app/common/shared/shared.module.ts @@ -30,6 +30,8 @@ import { SearchPipe } from './pipes/search.pipe'; import { SearchDialog } from './components/search-dialog/search-dialog.component'; import { AppMaterialModule } from '../modules/app-material.module'; import { SortPipe } from './pipes/sort.pipe'; +import { NotificationComponent } from './components/notification/notification.component'; +import { NotificationService } from './components/notification/notification.service'; @NgModule({ declarations: [ @@ -37,14 +39,16 @@ import { SortPipe } from './pipes/sort.pipe'; CBAWizardComponent, SearchPipe, SearchDialog, - SortPipe + SortPipe, + NotificationComponent ], exports: [ HomeComponent, CBAWizardComponent, SearchPipe, SearchDialog, - SortPipe + SortPipe, + NotificationComponent ], imports: [ AppMaterialModule, @@ -68,6 +72,7 @@ import { SortPipe } from './pipes/sort.pipe'; MatStepperModule, RouterModule ], + providers: [NotificationService], entryComponents: [SearchDialog] }) export class SharedModule { }
\ No newline at end of file |