41 lines
969 B

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { LagrgeHomeComponent } from './lagrge-home.component';
import { DwLanguageService } from '@webdpt/framework/language';
import { DwAuthGuardService } from '@webdpt/framework/auth';
const routes: Routes = [
{
path: '',
pathMatch: 'prefix',
canActivate: [DwAuthGuardService],
data: {
dwRouteData: {
programId: 'lagrge-home',
dwAuthId: 'lagrge-home'
}
},
resolve: {
transaction: DwLanguageService
},
children: [
{
path: "",
pathMatch: "prefix",
component: LagrgeHomeComponent,
canActivate: [DwAuthGuardService],
data: {
dwRouteData: {
dwAuthId: 'lagrge-home',
}
}
}
]
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class LagrgeHomeRoutingModule { }