Added redirect to standard view

This commit is contained in:
Nicolai Ort 2020-06-10 11:36:52 +02:00
parent a5323552b0
commit 8b859e24c0

View File

@ -7,7 +7,8 @@ import { UserstoryListComponent } from './userstory-list/userstory-list.componen
const routes: Routes = [
{ path: 'tasks', component: TaskListComponent },
{ path: 'userstories', component: UserstoryListComponent }
{ path: 'userstories', component: UserstoryListComponent },
{ path: '', redirectTo: '/tasks', pathMatch: 'full' },
];
@NgModule({