Removed double ssoLoginUrl from auth.state

This commit is contained in:
Julius Gruber
2019-08-02 13:05:57 +02:00
parent fb44c02437
commit f086ee79a5
2 changed files with 36 additions and 22 deletions

View File

@@ -6,17 +6,23 @@ import { AuthenticatedGuard } from './core/auth/authenticated.guard';
import {ShibbolethComponent} from './+login-page/shibboleth/shibboleth.component';
const ITEM_MODULE_PATH = 'items';
export function getItemModulePath() {
return `/${ITEM_MODULE_PATH}`;
}
const COLLECTION_MODULE_PATH = 'collections';
export function getCollectionModulePath() {
return `/${COLLECTION_MODULE_PATH}`;
}
const COMMUNITY_MODULE_PATH = 'communities';
export function getCommunityModulePath() {
return `/${COMMUNITY_MODULE_PATH}`;
}
@NgModule({
imports: [
RouterModule.forRoot([
@@ -25,16 +31,26 @@ export function getCommunityModulePath() {
{path: COMMUNITY_MODULE_PATH, loadChildren: './+community-page/community-page.module#CommunityPageModule'},
{path: COLLECTION_MODULE_PATH, loadChildren: './+collection-page/collection-page.module#CollectionPageModule'},
{path: ITEM_MODULE_PATH, loadChildren: './+item-page/item-page.module#ItemPageModule'},
{ path: 'mydspace', loadChildren: './+my-dspace-page/my-dspace-page.module#MyDSpacePageModule', canActivate: [AuthenticatedGuard] },
{
path: 'mydspace',
loadChildren: './+my-dspace-page/my-dspace-page.module#MyDSpacePageModule',
canActivate: [AuthenticatedGuard]
},
{path: 'search', loadChildren: './+search-page/search-page.module#SearchPageModule'},
{path: 'browse', loadChildren: './+browse-by/browse-by.module#BrowseByModule'},
{path: 'admin', loadChildren: './+admin/admin.module#AdminModule', canActivate: [AuthenticatedGuard]},
{path: 'login', loadChildren: './+login-page/login-page.module#LoginPageModule'},
{path: 'logout', loadChildren: './+logout-page/logout-page.module#LogoutPageModule'},
{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: 'workspaceitems',
loadChildren: './+workspaceitems-edit-page/workspaceitems-edit-page.module#WorkspaceitemsEditPageModule'
},
/* {
path: 'workflowitems',
loadChildren: './+workflowitems-edit-page/workflowitems-edit-page.module#WorkflowitemsEditPageModule'
},*/
{path: '**', pathMatch: 'full', component: PageNotFoundComponent},
])
],

View File

@@ -42,8 +42,6 @@ export class AuthStatus implements CacheableObject {
*/
eperson: Observable<RemoteData<EPerson>>;
ssoLoginUrl?: string;
/**
* True if the token is valid, false if there was no token or the token wasn't valid
*/