1
0
Files
yel-dspace-angular/src/app/+admin/admin-workflow-page/admin-workflow-page.component.ts
2020-04-08 15:41:55 +02:00

19 lines
495 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { Context } from '../../core/shared/context.model';
@Component({
selector: 'ds-admin-workflow-page',
templateUrl: './admin-workflow-page.component.html',
styleUrls: ['./admin-workflow-page.component.scss']
})
/**
* Component that represents a workflow item search page for administrators
*/
export class AdminWorkflowPageComponent {
/**
* The context of this page
*/
context: Context = Context.AdminWorkflowSearch;
}