97425: Create "System Wide Alerts" feature

This commit is contained in:
Yana De Pauw
2022-12-23 10:51:53 +01:00
parent ca864379c8
commit 37ec888b0a
22 changed files with 1001 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { SystemWideAlertBannerComponent } from './alert-banner/system-wide-alert-banner.component';
import { SystemWideAlertFormComponent } from './alert-form/system-wide-alert-form.component';
import { SharedModule } from '../shared/shared.module';
import { SystemWideAlertDataService } from '../core/data/system-wide-alert-data.service';
import { SystemWideAlertRoutingModule } from './system-wide-alert-routing.module';
import { UiSwitchModule } from 'ngx-ui-switch';
@NgModule({
imports: [
FormsModule,
SharedModule,
UiSwitchModule,
SystemWideAlertRoutingModule,
],
exports: [
SystemWideAlertBannerComponent
],
declarations: [
SystemWideAlertBannerComponent,
SystemWideAlertFormComponent
],
providers: [
SystemWideAlertDataService
]
})
export class SystemWideAlertModule {
}