mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
22 lines
598 B
TypeScript
22 lines
598 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { WorkflowItemsEditPageRoutingModule } from './workflowitems-edit-page-routing.module';
|
|
import { SubmissionModule } from '../submission/submission.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
WorkflowItemsEditPageRoutingModule,
|
|
CommonModule,
|
|
SharedModule,
|
|
SubmissionModule,
|
|
],
|
|
declarations: []
|
|
})
|
|
/**
|
|
* This module handles all modules that need to access the workflowitems edit page.
|
|
*/
|
|
export class WorkflowItemsEditPageModule {
|
|
|
|
}
|