mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
16 lines
500 B
TypeScript
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 { }
|