2019-11-27 16:54:14 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
2019-12-23 17:36:53 +01:00
|
|
|
import {ManageStakeholdersComponent} from "./manageStakeholders.component";
|
|
|
|
import {ManageStakeholdersRoutingModule} from "./manageStakeholders-routing.module";
|
2019-11-27 16:54:14 +01:00
|
|
|
import {PreviousRouteRecorder} from "../openaireLibrary/utils/piwik/previousRouteRecorder.guard";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {RouterModule} from "@angular/router";
|
2020-11-12 18:57:57 +01:00
|
|
|
import {InputModule} from "../openaireLibrary/sharedComponents/input/input.module";
|
2020-07-10 10:38:52 +02:00
|
|
|
import {LoadingModule} from "../openaireLibrary/utils/loading/loading.module";
|
2019-11-29 13:14:49 +01:00
|
|
|
import {AlertModalModule} from "../openaireLibrary/utils/modal/alertModal.module";
|
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
2020-10-19 23:18:09 +02:00
|
|
|
import {EditStakeholderModule} from "../general/edit-stakeholder/edit-stakeholder.module";
|
2020-10-23 15:58:16 +02:00
|
|
|
import {IconsModule} from "../openaireLibrary/utils/icons/icons.module";
|
|
|
|
import {IconsService} from "../openaireLibrary/utils/icons/icons.service";
|
2022-04-07 19:31:55 +02:00
|
|
|
import {earth, incognito, restricted} from "../openaireLibrary/utils/icons/icons";
|
2020-11-01 16:41:56 +01:00
|
|
|
import {PageContentModule} from "../openaireLibrary/dashboard/sharedComponents/page-content/page-content.module";
|
2021-11-12 13:16:51 +01:00
|
|
|
import {LogoUrlPipeModule} from "../openaireLibrary/utils/pipes/logoUrlPipe.module";
|
2021-11-30 12:47:32 +01:00
|
|
|
import {SearchInputModule} from "../openaireLibrary/sharedComponents/search-input/search-input.module";
|
2019-11-27 16:54:14 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2019-12-23 17:36:53 +01:00
|
|
|
declarations: [ManageStakeholdersComponent],
|
2019-11-27 16:54:14 +01:00
|
|
|
imports: [
|
2019-12-23 17:36:53 +01:00
|
|
|
ManageStakeholdersRoutingModule,
|
2019-11-27 16:54:14 +01:00
|
|
|
CommonModule,
|
|
|
|
RouterModule,
|
|
|
|
InputModule,
|
2019-11-29 13:14:49 +01:00
|
|
|
LoadingModule,
|
|
|
|
AlertModalModule,
|
2020-10-19 11:07:43 +02:00
|
|
|
ReactiveFormsModule,
|
2020-10-23 15:58:16 +02:00
|
|
|
EditStakeholderModule,
|
2020-11-01 16:41:56 +01:00
|
|
|
IconsModule,
|
2021-11-12 13:16:51 +01:00
|
|
|
PageContentModule,
|
2021-11-30 12:47:32 +01:00
|
|
|
LogoUrlPipeModule,
|
|
|
|
SearchInputModule
|
2019-11-27 16:54:14 +01:00
|
|
|
],
|
|
|
|
providers: [
|
2021-03-01 19:26:58 +01:00
|
|
|
PreviousRouteRecorder,
|
2019-11-27 16:54:14 +01:00
|
|
|
],
|
2019-12-23 17:36:53 +01:00
|
|
|
exports: [ManageStakeholdersComponent]
|
2019-11-27 16:54:14 +01:00
|
|
|
})
|
2019-12-23 17:36:53 +01:00
|
|
|
export class ManageStakeholdersModule {
|
2020-10-23 15:58:16 +02:00
|
|
|
constructor(private iconsService: IconsService) {
|
2022-04-07 19:31:55 +02:00
|
|
|
this.iconsService.registerIcons([earth, incognito, restricted]);
|
2020-10-23 15:58:16 +02:00
|
|
|
}
|
2019-11-27 16:54:14 +01:00
|
|
|
}
|