2022-07-29 11:15:54 +02:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {CommonModule} from "@angular/common";
|
2022-08-29 14:23:33 +02:00
|
|
|
import {TerminologyComponent} from "./terminology.component";
|
2022-10-24 11:57:52 +02:00
|
|
|
import {MethodolocigalApproachComponent} from "./methodological-approach.component";
|
2022-07-29 11:15:54 +02:00
|
|
|
import {RouterModule} from "@angular/router";
|
|
|
|
import {PreviousRouteRecorder} from "../../utils/piwik/previousRouteRecorder.guard";
|
|
|
|
import {PageContentModule} from "../../dashboard/sharedComponents/page-content/page-content.module";
|
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
2022-08-29 15:30:12 +02:00
|
|
|
import {BreadcrumbsModule} from "../../utils/breadcrumbs/breadcrumbs.module";
|
2022-10-21 16:06:44 +02:00
|
|
|
import {SliderTabsModule} from "../../sharedComponents/tabs/slider-tabs.module";
|
|
|
|
import {HelperModule} from "../../utils/helper/helper.module";
|
2022-07-29 11:15:54 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2022-10-24 15:37:05 +02:00
|
|
|
declarations: [TerminologyComponent, MethodolocigalApproachComponent],
|
2022-07-29 11:15:54 +02:00
|
|
|
imports: [CommonModule, RouterModule.forChild([
|
|
|
|
{
|
|
|
|
path: '',
|
2022-08-29 14:23:33 +02:00
|
|
|
redirectTo: 'terminology',
|
2022-09-23 13:10:47 +02:00
|
|
|
pathMatch: 'full',
|
2022-08-29 14:23:33 +02:00
|
|
|
canDeactivate: [PreviousRouteRecorder]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'terminology',
|
|
|
|
component: TerminologyComponent,
|
|
|
|
canDeactivate: [PreviousRouteRecorder]
|
2022-07-29 11:15:54 +02:00
|
|
|
},
|
2022-10-24 11:57:52 +02:00
|
|
|
{
|
|
|
|
path: 'methodological-approach',
|
|
|
|
component: MethodolocigalApproachComponent,
|
|
|
|
canDeactivate: [PreviousRouteRecorder]
|
|
|
|
}
|
2023-05-15 15:47:25 +02:00
|
|
|
]), PageContentModule, IconsModule, BreadcrumbsModule, SliderTabsModule, HelperModule],
|
2022-10-24 15:37:05 +02:00
|
|
|
exports: [TerminologyComponent, MethodolocigalApproachComponent]
|
2022-07-29 11:15:54 +02:00
|
|
|
})
|
|
|
|
export class MethodologyModule {
|
|
|
|
}
|