2018-03-22 16:38:42 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import{CommunityWrapperComponent} from './communityWrapper.component';
|
|
|
|
import {PreviousRouteRecorder} from '../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild([
|
2020-11-12 16:59:26 +01:00
|
|
|
{ path: '', component: CommunityWrapperComponent, canDeactivate: [PreviousRouteRecorder] }
|
2018-03-22 16:38:42 +01:00
|
|
|
|
|
|
|
])
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class CommunityWrapperRoutingModule { }
|