Polish Round 4 (#2429)
This commit is contained in:
parent
cd7f876140
commit
ee72727841
33 changed files with 666 additions and 599 deletions
|
|
@ -81,6 +81,7 @@ const routes: Routes = [
|
|||
},
|
||||
]
|
||||
},
|
||||
{path: '', pathMatch: 'full', redirectTo: 'home'},
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -91,9 +92,10 @@ const routes: Routes = [
|
|||
path: 'login',
|
||||
loadChildren: () => import('./_routes/registration.router.module').then(m => m.routes) // TODO: Refactor so we just use /registration/login going forward
|
||||
},
|
||||
{path: '**', pathMatch: 'full', redirectTo: 'home'},
|
||||
{path: 'libraries', pathMatch: 'full', redirectTo: 'home'},
|
||||
{path: '**', pathMatch: 'prefix', redirectTo: 'home'},
|
||||
{path: '**', pathMatch: 'full', redirectTo: 'home'},
|
||||
{path: '', pathMatch: 'full', redirectTo: 'home'},
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue