add reload path

This commit is contained in:
argirok 2022-05-18 12:40:51 +03:00
parent 1927b04d7a
commit 3112689645
1 changed files with 5 additions and 1 deletions

View File

@ -89,7 +89,11 @@ const routes: Routes = [
path: 'project-report',
loadChildren: () => import('./landingPages/htmlProjectReport/libHtmlProjectReport.module').then(m => m.LibHtmlProjectReportModule)
},
{
path: 'reload',
loadChildren: () => import('./reload/libReload.module').then(m => m.LibReloadModule),
data: {hasSidebar: false}
},
{path: 'user-info', loadChildren: () => import('./login/libUser.module').then(m => m.LibUserModule)},
{path: 'error', component: OpenaireErrorPageComponent},
{path: '**', pathMatch: 'full', component: OpenaireErrorPageComponent}