2019-11-27 16:54:14 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {PreviousRouteRecorder} from '../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
2019-12-23 17:36:53 +01:00
|
|
|
import {ManageStakeholdersComponent} from "./manageStakeholders.component";
|
2019-11-27 16:54:14 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild([
|
|
|
|
{
|
|
|
|
path: '',
|
2019-12-23 17:36:53 +01:00
|
|
|
component: ManageStakeholdersComponent,
|
2019-11-27 16:54:14 +01:00
|
|
|
canDeactivate: [PreviousRouteRecorder],
|
2019-12-20 12:48:35 +01:00
|
|
|
data: {hasSidebar: true}
|
2019-11-27 16:54:14 +01:00
|
|
|
}
|
|
|
|
])
|
|
|
|
]
|
|
|
|
})
|
2019-12-23 17:36:53 +01:00
|
|
|
export class ManageStakeholdersRoutingModule {
|
2019-11-27 16:54:14 +01:00
|
|
|
}
|