Files
dspace-angular/src/app/+login-page/login-page-routing.module.ts
2019-08-02 10:40:46 +02:00

16 lines
500 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { LoginPageComponent } from './login-page.component';
import {ShibbolethComponent} from './shibboleth/shibboleth.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', pathMatch: 'full', component: LoginPageComponent, data: { title: 'login.title' } }
/* { path: 'shibboleth', component: ShibbolethComponent }*/
])
]
})
export class LoginPageRoutingModule { }