1
0

Prototype ready

This commit is contained in:
Julius Gruber
2019-09-20 11:41:01 +02:00
parent 52ef2acb08
commit 9844e9eff7
21 changed files with 125 additions and 106 deletions

View File

@@ -3,7 +3,8 @@ import { RouterModule } from '@angular/router';
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
import { AuthenticatedGuard } from './core/auth/authenticated.guard';
import { ShibbolethComponent } from './+login-page/shibbolethTargetPage/shibboleth.component';
import { ShibbolethTargetPageComponent } from './+login-page/shibbolethTargetPage/shibboleth-target-page.component';
import { ShibbConstants } from './+login-page/shibbolethTargetPage/const/shibbConstants';
const ITEM_MODULE_PATH = 'items';
export function getItemModulePath() {
@@ -40,7 +41,7 @@ export function getAdminModulePath() {
{ path: 'submit', loadChildren: './+submit-page/submit-page.module#SubmitPageModule' },
{ path: 'workspaceitems', loadChildren: './+workspaceitems-edit-page/workspaceitems-edit-page.module#WorkspaceitemsEditPageModule' },
{ path: 'workflowitems', loadChildren: './+workflowitems-edit-page/workflowitems-edit-page.module#WorkflowItemsEditPageModule' },
{ path: 'shibboleth', pathMatch: 'full', component: ShibbolethComponent },
{ path: ShibbConstants.SHIBBOLETH_REDIRECT_ROUTE, pathMatch: 'full', component: ShibbolethTargetPageComponent },
{ path: '**', pathMatch: 'full', component: PageNotFoundComponent },
])
],