mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
25 lines
675 B
TypeScript
25 lines
675 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { AuthenticatedGuard } from '../core/auth/authenticated.guard';
|
|
import { ThemedSubmissionImportExternalComponent } from '../submission/import-external/themed-submission-import-external.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{
|
|
canActivate: [ AuthenticatedGuard ],
|
|
path: '',
|
|
component: ThemedSubmissionImportExternalComponent,
|
|
pathMatch: 'full',
|
|
data: {
|
|
title: 'submission.import-external.page.title'
|
|
}
|
|
}
|
|
])
|
|
],
|
|
providers: [ ]
|
|
})
|
|
export class ImportExternalRoutingModule {
|
|
|
|
}
|