Files
dspace-angular/src/app/+workflowitems-edit-page/workflowitems-edit-page.module.ts
2021-03-18 15:46:53 +01:00

26 lines
1.1 KiB
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';
import { WorkflowItemDeleteComponent } from './workflow-item-delete/workflow-item-delete.component';
import { WorkflowItemSendBackComponent } from './workflow-item-send-back/workflow-item-send-back.component';
import { ThemedWorkflowItemDeleteComponent } from './workflow-item-delete/themed-workflow-item-delete.component';
import { ThemedWorkflowItemSendBackComponent } from './workflow-item-send-back/themed-workflow-item-send-back.component';
@NgModule({
imports: [
WorkflowItemsEditPageRoutingModule,
CommonModule,
SharedModule,
SubmissionModule,
],
declarations: [WorkflowItemDeleteComponent, ThemedWorkflowItemDeleteComponent, WorkflowItemSendBackComponent, ThemedWorkflowItemSendBackComponent]
})
/**
* This module handles all modules that need to access the workflowitems edit page.
*/
export class WorkflowItemsEditPageModule {
}