Added route for backlog
This commit is contained in:
parent
455728da50
commit
eb177b468f
@ -4,12 +4,14 @@ import { Routes, RouterModule } from '@angular/router';
|
|||||||
import { UserstoryTableComponent } from './userstory-table/userstory-table.component';
|
import { UserstoryTableComponent } from './userstory-table/userstory-table.component';
|
||||||
import { TaskTableComponent } from './task-table/task-table.component';
|
import { TaskTableComponent } from './task-table/task-table.component';
|
||||||
import { SprintTableComponent } from './sprint-table/sprint-table.component';
|
import { SprintTableComponent } from './sprint-table/sprint-table.component';
|
||||||
|
import { BacklogComponent } from './backlog-table/backlog.component';
|
||||||
// import { DashboardComponent } from './dashboard/dashboard.component';
|
// import { DashboardComponent } from './dashboard/dashboard.component';
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{ path: 'tasks', component: TaskTableComponent },
|
{ path: 'tasks', component: TaskTableComponent },
|
||||||
{ path: 'userstories', component: UserstoryTableComponent },
|
{ path: 'userstories', component: UserstoryTableComponent },
|
||||||
{ path: 'sprints', component: SprintTableComponent },
|
{ path: 'sprints', component: SprintTableComponent },
|
||||||
|
{ path: 'backlog', component: BacklogComponent },
|
||||||
// { path: 'dashboard', component: DashboardComponent },
|
// { path: 'dashboard', component: DashboardComponent },
|
||||||
{ path: '', redirectTo: '/tasks', pathMatch: 'full' },
|
{ path: '', redirectTo: '/tasks', pathMatch: 'full' },
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user