mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { EPeopleRegistryComponent } from './epeople-registry/epeople-registry.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: 'epeople', component: EPeopleRegistryComponent, data: { title: 'admin.access-control.epeople.title' } },
|
|
])
|
|
]
|
|
})
|
|
/**
|
|
* Routing module for the AccessControl section of the admin sidebar
|
|
*/
|
|
export class AdminAccessControlRoutingModule {
|
|
|
|
}
|