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";
|
2019-12-23 15:02:29 +01:00
|
|
|
import {InputModule} from "../openaireLibrary/dashboard/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-06-12 12:46:11 +02:00
|
|
|
import {AdminDashboardGuard} from "../utils/adminDashboard.guard";
|
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,
|
|
|
|
ReactiveFormsModule
|
2019-11-27 16:54:14 +01:00
|
|
|
],
|
|
|
|
providers: [
|
2020-06-12 12:46:11 +02:00
|
|
|
AdminDashboardGuard, 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 {
|
2019-11-27 16:54:14 +01:00
|
|
|
|
|
|
|
}
|