argos/dmp-frontend/src/app/ui/grant/grant.routing.ts

37 lines
748 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { GrantEditorComponent } from './editor/grant-editor.component';
import { GrantListingComponent } from './listing/grant-listing.component';
const routes: Routes = [
{
path: '',
component: GrantListingComponent,
data: {
breadcrumb: true
},
},
{
path: 'edit/:id',
component: GrantEditorComponent,
data: {
breadcrumb: true,
title: 'GENERAL.TITLES.GRANT-EDIT'
}
},
{
path: 'new',
component: GrantEditorComponent,
data: {
breadcrumb: true,
title: 'GENERAL.TITLES.GRANT-NEW'
},
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class GrantRoutingModule { }